diff --git a/kankou.html b/kankou.html index 312e172..0402cfa 100644 --- a/kankou.html +++ b/kankou.html @@ -72,16 +72,16 @@ }); }*/ //ここから上まで消していい - - - -
- - - - - -
行き先リスト
-
+ var button = document.getElementById('button'), + list = document.getElementById('list'); + +button.addEventListener('click', function() { + list.insertAdjacentHTML('beforeend', '
  • リスト
  • '); +}); + + + + +