addEventListenerを用いて、ボタンがクリックされたらconsoleにIt got clicked!
と表示したいです。
しかし、consoleには以下のようなエラーが出てしまいます。</body>の直前でscriptを読み込ませているのでが、原因がわかりませんので、ご教授願います。
Uncaught TypeError: Cannot read property 'addEventListener' of null at HTMLDocument.<anonymous>
・index.html
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>JavaScript Basics</title> </head> <body> <button id=”butts”>Click Me!</button> <button class="cool">Click me also!</button> <script src="./JS/event.js"></script> </body> </html>
・event.js
'use strict'; { document.addEventListener("DOMContentLoaded", function(){ const butts = document.querySelector('.butts'); butts.addEventListener('click', function(){ console.log('It got clicked!'); }); }); }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/17 00:36
退会済みユーザー
2021/03/17 00:49
2021/03/17 02:06