我一直在使用bob tabors jQuery视频教程here已经有一段时间了,我无法让jQuery工作。
这是我的HTML
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" type="text/css" href="main.css" />
<title>14. Getting Started with jQuery</title>
</head>
<body>
<h1 id="title">14. Getting Started with jQuery</h1>
<p id="first">
<span>Now is the time for all good men to come to
the aid of their country.</span>
</p>
<p id="second">
<strong>In the end these things matter most:
How well did you love? How fully did you live?</strong>
</p>
<p id="third">
<a id="myAnchor" href="http://www.learnvisualstudio.net">Visit my website</a>
</p>
</body>
</html>
这是我的js
jQuery(document).ready(function() {
alert("thsdjasl");
}
但是在html之后,没有警报。
答案 0 :(得分:10)
您缺少准备好的功能的右括号:
jQuery(document).ready(function() {
alert("thsdjasl");
});
如果没有此警报将无法运行,您将收到以下错误:
未捕获的SyntaxError:意外的令牌}
答案 1 :(得分:0)
您缺少右括号和分号。理想情况下,您应该将“$”命名法用于文档准备文件:
$(document).ready(function() {
alert("thsdjasl");
});
最后,您可以通过在浏览器中打开开发人员工具(Chrome很好)来自己想出这一点,转到javascript源标签并查找弹出的错误和警告。
答案 2 :(得分:-2)
确保目录root中的jquery.js文件。并使用此:
$(document).ready(function(){
console.log('bla bla ');
alert('bla');
});