-2

嗨,我尝试了 jquery.com 的第一个 jQuery 教程。我从那里复制了代码。html 链接有效,但带有 jquery 的警报窗口不起作用。到目前为止我尝试了什么:

  • 检查是否启用了 javascript
  • 删除了旧的 jquery 文件
  • 将 google jquery api 作为脚本标签中的源(而不是 jqueryfile 的路径)
  • 哭了
  • 搜索语法错误(错别字不可能是因为我复制了代码片段)
  • 下载萤火虫
  • 用firefox和chrome试了代码

但到目前为止没有任何效果。提前致谢。

<!doctype html>
<html>
    <head>
       <meta charset="utf-8">
       <title>Demo</title>
    </head>
    <body>
       <a href="http://jquery.com/">jQuery</a>
       <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">       </script>    
       <script>
     // your code here 
        $( document ).ready(function() {
        $( "a" ).click(function( event ) {
          alert( "Thanks for visiting!" );
         });
         });
      </script>
  </body>
</html>
4

1 回答 1

-2

您的脚本源丢失并且 http 或 https

<!doctype html>
<html>
    <head>
       <meta charset="utf-8">
       <title>Demo</title>
    </head>
    <body>
       <a href="http://jquery.com/">jQuery</a>
       <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">       </script>    
       <script>
        $(document).ready(function() {
        $( "a" ).click(function() {
              alert( "Thanks for visiting!" );
         });
         });
      </script>
  </body>
</html>
于 2013-03-15T17:14:50.097 回答