简单的 jQuery 示例不起作用(隐藏元素)
我这里有一个简单的 jQuery 示例,其中应该隐藏一个元素。但是下面的代码不起作用:
<html>
<head>
<script src="../lib/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#test').hide();
}
</script>
</head>
<body>
<div id="test">Hi</div>
I'm here
</body>
</html>
我添加了ready函数但它仍然不起作用。我缺少什么?
I have here a simple jQuery example wherein an element should be hidden. But the following code does not work:
<html>
<head>
<script src="../lib/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#test').hide();
}
</script>
</head>
<body>
<div id="test">Hi</div>
I'm here
</body>
</html>
I added the ready function but it still doesn't work. What I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
最后缺少一个
);
,就这么简单。应该读:
You are missing a
);
at the end, it's that simple.Should read:
您的 jquery 代码末尾缺少括号和分号。请参阅下面的代码:
You're missing a bracket and a semicolon at the end of your jquery code. See the code below:
改为
你
失踪了
change
to
you are missing
您错过了函数末尾的结束“)”。
You've missed out a closing ")" at the end of the function.
你缺少一个);文件准备好后致电
Your missing a ); after your document ready call
你必须关闭准备。添加了一个额外的括号。
You have to close the ready. added an extra parenthesis.
缺少 );
正确:
Missing );
Correct: