ホームページ > 記事 > ウェブフロントエンド > JQuery はクリック イベントを使用して問題を解決できません
<html> <head> <title>测试JQuery</title> <meta charset = "utf-8"/> <style> .class_1{ background-color: red; } </style> <script type = "text/javascript" src = "../JQuery/jquery.js"></script> <script language = "javascript"> $(document).ready(function(){ window.alert("Hello JQuery!"); }); //这里触发事件后不能输出您好 $('#test').click(function(){ window.alert('您好'); }); </script> </head> <body> <input class = "class_1" type = "button" id="test" value = "点击测试"/> </body> </html>でクリックイベントを使用できないのはなぜですか?あなたのものはクリックイベント
$(document).ready(function(){ window.alert("Hello JQuery!"); //把代码放在 ready 方法里面 才起作用 因为要等文档加载完成 才能找到 test这个元素 //这里触发事件后不能输出您好 $('#test').click(function(){ window.alert('您好'); }); });を使用できますが、私がそれをあなたのものに変更すると、表示されません? ? ?
<html> <head> <title>测试JQuery</title> <meta charset = "utf-8"/> <style> .class_1{ background-color: red; } </style> <script type = "text/javascript" src = "../JQuery/jquery.js"></script> </head> <body> <input class = "class_1" type = "button" id="test" value = "点击测试"/> <script language = "javascript"> $(document).ready(function(){ alert("Hello JQuery!"); }); //这里触发事件后不能输出您好 $('#test').click(function(){ alert('您好'); }); </script> </body> </html>ロード順序の問題。 jquery.jsのパスは正しいですか? window.alert 内のウィンドウは省略できます。
以上がJQuery はクリック イベントを使用して問題を解決できませんの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。