我正在尝试使用空类或未禁用的类获取位于标签元素中的数据。不幸的是,我尝试过的选择器都没有,比如 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>