現象
クリックイベントでアラートを出そうと思ったのですが下記のエラーが出てしまいました。
うまく読み込めていないようなのですがうまくいきませんでした。
Uncaught ReferenceError: $ is not defined
ソースコード
js
1$('#text-button').click({param1: "Hello", param2: "World"}, cool_function); 2 3function cool_function(event){ 4 alert(event.data.param1); 5 alert(event.data.param2); 6} 7
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <div id="text-button"><p id="text">クリック</p></div> </body> <script src="test.js" ></script> <script src="http://code.jquery.com/jquery-3.3.1.min.js" defer></script> </html>
###ご教授お願いします。
回答3件
あなたの回答
tips
プレビュー