使用 Jquery 在多个元素上运行函数
我有一些代码想要在表格内页面上的每个复选框上运行,但我不确定执行此操作的最佳方法? 我已经尝试过类似的方法,但它不起作用:(
$(document).ready(function() {
function whatever (elem) {
var $elem = elem;
$elem.val('test');
}
$('table tr td :checkbox').(function() {
whatever($(this));
}
});
任何帮助都会很棒,但对此有点不知所措!谢谢:)
I've got some code that I'd like to run on every single checkbox on my page within a table, but I'm not sure of the best way to do this? I've tried something like this but it didn't work :(
$(document).ready(function() {
function whatever (elem) {
var $elem = elem;
$elem.val('test');
}
$('table tr td :checkbox').(function() {
whatever($(this));
}
});
Any help would be fantastic, at a bit of a loss with this! Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 $.each();
要访问您当前在循环中处理的复选框,请使用它。
Use $.each();
To access the checkbox you are currently working on in the loop, use this.
检查$().each()。
顺便说一下,
foo.(bar)
不是有效的 Javascript 语法。Check $().each().
And by the way,
foo.(bar)
is not valid Javascript syntax.