我正在尝试找出在http://www.w3schools.com/jquery/trysel.asp?filename=trysel_basic&jqsel=p.intro,%23choose上找到的 jquery 选择器测试的代码。
我收到错误:
未捕获的语法错误,无法识别的表达式:“h1”jquery.js:4241
当我在文本框中输入 h1 时,在 Chrome 开发人员工具中。右边它应该突出显示<h1>
标签内的“欢迎来到我的主页”。
有人可以指出我要去哪里错了吗?谢谢你。
以下是我的代码:
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(":button").click(function(){
var hl_str= '"'+$(":text").val()+'"';
//document.write(hl_str);
$(hl_str).effect("highlight",{color:"ff0000"},3000);
});
})
</script>
</head>
<body>
<input type="text">
<input type="button" value="Edit and Click Me">
<h1>Welcome to My Homepage</h1>
<p class="intro">My name is Donald</p>
<p>I live in Duckburg</p>
<p>My best friend is Mickey</p>
Who is your favourite:
<ul id="choose">
<li>Goofy</li>
<li>Mickey</li>
<li>Pluto</li>
</ul>
</body>
</html>