From a02424f58951caf9b8e2a3481306ee9b2e224a5b Mon Sep 17 00:00:00 2001 From: Yusuke Takahashi Date: Fri, 21 Apr 2017 08:00:11 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=A9=E3=82=A4=E3=83=96=E4=B8=80=E8=A6=A7?= =?UTF-8?q?=E7=94=BB=E9=9D=A2=E3=81=AE=E3=83=AC=E3=82=A4=E3=82=A2=E3=82=A6?= =?UTF-8?q?=E3=83=88=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 8b10de2..dbabca6 100755 --- a/index.html +++ b/index.html @@ -4,6 +4,11 @@ ライブをメモするLivelog + @@ -19,10 +24,8 @@

Livelog

- -

-

-

インポート

+

+

@@ -189,24 +192,27 @@

Livelog

} //アーティスト名の配列をつなげて文字列に変換 - var artistsItemJoin = arrayJoin('、', artistsItem); + var artistsItemJoin = arrayJoin(', ', artistsItem); - $('info').innerHTML += '
  • ' + currentItem[i].date + '

    ' + currentItem[i].title + '@' + currentItem[i].area + ' ' + currentItem[i].place + '

    OPEN ' + currentItem[i].open + ' / START ' + currentItem[i].start + '

    ARTIST ' + artistsItemJoin + '

    TICKET ' + currentItem[i].ticket + ' ' + currentItem[i].attendance + '

  • '; + $('info').innerHTML += '
  • ' + currentItem[i].title + '@' + currentItem[i].area + ' ' + currentItem[i].place + '

    ' + currentItem[i].date + ' OPEN ' + currentItem[i].open + ' / START ' + currentItem[i].start + '

    ARTIST ' + artistsItemJoin + '

    TICKET ' + currentItem[i].ticket + ' ' + currentItem[i].attendance + '

  • '; } $('clear').innerHTML = ''; - $('export').innerHTML = 'エクスポート'; + var exportButton = document.createElement('button'); + exportButton.innerText = 'エクスポート'; + exportButton.setAttribute('onclick', 'location.href="export.html";'); + $('export').appendChild(exportButton); } else { //データが登録されていなかったら文言を表示 $('info').innerHTML = '
  • ライブが登録されていません。
  • '; } +//☆年のプルダウンを選択した時の処理 function changeYear(obj){ - + //選択した年のパラメーターを付けてリロード location.href = 'index.html?year=' + obj.value; - } //☆データを全削除する処理