尽管我已经包含了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");
});
答案 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>