简单的html dom只提取空类

时间:2013-07-08 18:51:17

标签: php parsing css-selectors html-parsing simple-html-dom

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

1 个答案:

答案 0 :(得分:0)

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

alert(element);

您可以在jquery

的帮助下完成此操作