本文介绍了在每个表上运行jQuery的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
下面,我有一些jQuery,它们通过类名= sizetable遍历每个表
Below I have some jQuery that runs through each table with the classname = sizetable
我要执行此操作:
$("#frontshade :radio").click(function() {});
但是我不确定如何用数组中的ID替换#frontshade
But I'm not sure how to replace the #frontshade
with the id from the array
var table_ids = new Array();
$('.sizetable')
.each(function(e){
table_ids[] = $(this).attr('id');
// JQUERY TO EXECUTE ON EACH TABLE
$("#frontshade :radio").click(function() {};
//
});
推荐答案
您可以编写$(this).find('input:radio')
.
.find()
方法查找与选择器匹配的所有后代.
You can write $(this).find('input:radio')
.
The .find()
method finds all descendants that match a selector.
请注意, input:radio
比:radio
快.
如文档所述,
Note that input:radio
is faster than :radio
.
As the documentation states,
这篇关于在每个表上运行jQuery的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!