“检查全部”按钮不起作用

发布于 2024-12-02 06:26:47 字数 357 浏览 1 评论 0原文

可能的重复:
全选复选框

我有以下代码用于全选按钮,该按钮将检查网页上的所有复选框,但它不起作用。该函数应该去哪里?因为我尝试将代码放在我的页面上,但它不起作用。

http://jsfiddle.net/KbkZk/1/

抱歉,哈哈,漫长的一天!

Possible Duplicate:
Select All Checkbox

I have the follow code for a Check All button that will check all my checkboxes on my webpage, but it's not working. Where is the function supposed to go? Because I've tried putting the code on my page but it doesn't work.

http://jsfiddle.net/KbkZk/1/

Sorry lol, been a long day!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风吹短裙飘 2024-12-09 06:26:47

什么代码?通常,您将 JS 放在页面的 块中。如果 JS 将操作页面的内容,则需要延迟其执行,直到加载页面的其余部分。在 jquery 中,您可以使用:

<script>
$(document).ready(function() {
    ... your code here ...
}):
</script>

如果您没有使用 JS 库,则可以使用以下命令执行几乎相同的操作:

<body onload="myFunction();">

并让 myFunction 执行初始化/设置。

What code? Generally you put your JS in the <head> block of your page. If the JS will be manipulating the page's contents, you'll need to delay its execution until the rest of the page is loaded. In jquery, you do that with:

<script>
$(document).ready(function() {
    ... your code here ...
}):
</script>

If you're not using a JS library, you can do mostly the same thing with:

<body onload="myFunction();">

and have that myFunction do your initialization/setup.

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