0

我正在尝试使用空类或未禁用的类获取位于标签元素中的数据。不幸的是,我尝试过的选择器都没有,比如 jQuery ":Not" 选择器。

我到目前为止的代码是:

$element = $html->find('div .titleHeader label', 0);

理想情况下会提取: 110 出:

<label for="attribute76">
<input id="attribute76" class="jshide" type="radio" value="76" name="super_attribute[144]">
110
</label>

而不是 105 出:

<label class="disabled" for="attribute75">
<span class="crossedStock"> </span>
<input id="attribute75" class="jshide" type="radio" disabled="disabled" value="75" name="super_attribute[144]">
105
</label>
4

1 回答 1

0
var element = $('div .titleHeader label')find('input', 0);

alert(element);

你可以在 jquery 的帮助下做到这一点

于 2013-07-08T19:00:01.970 回答