jQuery - 隐藏文本
我有以下代码并试图隐藏 XYZ。为什么不使用此代码隐藏它?
<html>
<head>
<script type="text/javascript">
$(function(){
$('#hide').hide();
});
</script>
</head>
<body>
<div id="hide">
XYZ
</div>
</body>
</html>
谢谢。
I have the following code and trying to hide XYZ
. Why isn't it getting hidden using this code?
<html>
<head>
<script type="text/javascript">
$(function(){
$('#hide').hide();
});
</script>
</head>
<body>
<div id="hide">
XYZ
</div>
</body>
</html>
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您需要包含对 jQuery 的引用才能使用 jQuery 函数
You need to include a reference to jQuery in order to use jQuery functions
您正在使用 jQuery 语法,但没有添加 jQuery 本身,这就是原因。
将其添加到当前脚本块之前的 head 标签中:
You are using jQuery syntax, but you didn't add jQuery itself, that's why.
Add this to the head tag, before your current script block:
您需要在源文件中包含 jQuery.js。
You need to include jQuery.js in your source file.
您没有加载 jQuery。
尝试从 Google 加载它:
在你的脚本之前。
You are not loading jQuery.
try to load it from Google:
before your script.
您忘记包含 jQuery 库
You have forgot to include jQuery library