简单的 jQuery 示例不起作用(隐藏元素)

发布于 2024-12-22 15:20:30 字数 444 浏览 2 评论 0原文

我这里有一个简单的 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 技术交流群。

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

发布评论

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

评论(7

冰雪梦之恋 2024-12-29 15:20:30

最后缺少一个 ); ,就这么简单。

应该读:

<script type="text/javascript">
    $(document).ready(function(){
        $('#test').hide();
    });
</script>

You are missing a ); at the end, it's that simple.

Should read:

<script type="text/javascript">
    $(document).ready(function(){
        $('#test').hide();
    });
</script>
缱绻入梦 2024-12-29 15:20:30

您的 jquery 代码末尾缺少括号和分号。请参阅下面的代码:

    $(document).ready(function(){         
            $('#test').hide();     
    });

You're missing a bracket and a semicolon at the end of your jquery code. See the code below:

    $(document).ready(function(){         
            $('#test').hide();     
    });
孤者何惧 2024-12-29 15:20:30

改为

$(document).ready(function(){
    $('#test').hide();
}

$(document).ready(function(){
    $('#test').hide();
});

失踪了

);

change

$(document).ready(function(){
    $('#test').hide();
}

to

$(document).ready(function(){
    $('#test').hide();
});

you are missing

);
○闲身 2024-12-29 15:20:30

您错过了函数末尾的结束“)”。

You've missed out a closing ")" at the end of the function.

蝶舞 2024-12-29 15:20:30

你缺少一个);文件准备好后致电

Your missing a ); after your document ready call

つ低調成傷 2024-12-29 15:20:30
<html>
<head>
<script src="../lib/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $('#test').hide();
    }); //<----------------------------Right here!
</script>
</head>
<body>
<div id="test">Hi</div>
I'm here
</body>
</html>

你必须关闭准备。添加了一个额外的括号。

<html>
<head>
<script src="../lib/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $('#test').hide();
    }); //<----------------------------Right here!
</script>
</head>
<body>
<div id="test">Hi</div>
I'm here
</body>
</html>

You have to close the ready. added an extra parenthesis.

久光 2024-12-29 15:20:30

缺少 );

正确:

  $(document).ready(function(){
        $('#test').hide();
    });

Missing );

Correct:

  $(document).ready(function(){
        $('#test').hide();
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文