我的jQuery无法正常运行,尽管我已经包含了库

时间:2019-06-22 12:48:01

标签: javascript jquery html

尽管我已经包含了jQuery库,但我的jQuery代码却无法正常工作

这是html部分:

<html>
   <head>
     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
      <script src="../js/app.js"></script>
   </head>

   <body>
      <h1 id="test" >Hello</h1>
   </body>
</html>

这是jquery的一部分:

$(document).ready(function(){


  alert("hello");

});

1 个答案:

答案 0 :(得分:-2)

我在文件中放入了jquery脚本。这应该可以工作。

<html>
   <head>
     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
      <script src="../js/app.js"></script>
   </head>

   <body>
      <h1 id="test" >Hello</h1>

   <script> 


     $(document).ready(function(){


      alert("hello");

     });
   </script>
   </body>
</html>