gpt4 book ai didi

javascript - OnClick 事件未绑定(bind)/触发

转载 作者:行者123 更新时间:2023-12-03 10:17:46 25 4
gpt4 key购买 nike

我正在尝试创建一个选择链接来触发当前页面上的所有复选框,但它不起作用,只是重新加载页面。

file_items.js

$('a.select-all-current').click(function(e){
e.preventDefault();
alert(e);
$('input:not(:checked)').each(function(index, element){
$(element).click();
});
return false;
});

index.html.slim

...
.col-lg-6.pull-right.align-right
.pull-right
= link_to 'Deselect All', '#', class: 'label'
.dropdown.col-lg-2.pull-right
a#selectAllMenu.dropdown-toggle[ data-toggle='dropdown' aria-expanded='true']
.label.select-all
= "Select All "
span.caret.pull-right
ul.dropdown-menu[role='menu' aria-labelledby='selectAllMenu']
li
| SELECT
li
hr
li
= link_to 'current page', '', class: 'select-all-current'
li
= link_to 'all files', '', class: 'select-all-files'
li
= link_to 'all untagged files', '', class: 'select-all-untagged'
...

最佳答案

您需要将代码包装在像这样的文档就绪语句中。

$(function() { 
$('a.select-all-current').click(function(e){
e.preventDefault();
alert(e);
$('input:not(:checked)').each(function(index, element){
$(element).click();
});
return false;
});
});

关于javascript - OnClick 事件未绑定(bind)/触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29784515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com