jQuery - 隐藏文本

发布于 2024-12-08 13:28:44 字数 312 浏览 0 评论 0原文

我有以下代码并试图隐藏 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

長街聽風 2024-12-15 13:28:45

您需要包含对 jQuery 的引用才能使用 jQuery 函数

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript">
    $(function(){
      $('#hide').hide();
    });

You need to include a reference to jQuery in order to use jQuery functions

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript">
    $(function(){
      $('#hide').hide();
    });
迷鸟归林 2024-12-15 13:28:45

您正在使用 jQuery 语法,但没有添加 jQuery 本身,这就是原因。

将其添加到当前脚本块之前的 head 标签中:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

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:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
波浪屿的海角声 2024-12-15 13:28:45

您需要在源文件中包含 jQuery.js。

You need to include jQuery.js in your source file.

旧伤慢歌 2024-12-15 13:28:45

您没有加载 jQuery。

尝试从 Google 加载它:

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js'></script>

在你的脚本之前。

You are not loading jQuery.

try to load it from Google:

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js'></script>

before your script.

您忘记包含 jQuery 库

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.js'></script>

You have forgot to include jQuery library

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.js'></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文