标签: jquery jquery-selectors
我正在尝试从表格行中排除某些单选按钮。以下是我的代码。
$(this)是表格行的引用。我想为这一行中的每个无线电做一些事情,其中无线电类(css)名称未被“禁用”,但这是忽略它。我使用选择器错了吗?
$(this)
$(this).find('input[type="radio"]').not(".disabled").each(function () { //some code });
答案 0 :(得分:0)
我发现css名称拼写错误的问题。谢谢大家。