如何使用简单的html dom获取内容但没有类和id

时间:2014-09-25 02:44:34

标签: php html dom curl simple-html-dom

我对简单的html dom有疑问 问题是如何获取内容但没有类和id [使用简单的html dom ]

例如:

<div style="line-height:15px; float:left; width:100%; margin:2px 0px;">I want grab this text..
<div style="float:left; width:100%; margin-top:5px; font-weight:bold; text-align:left;">text grab2</div>
thannks

1 个答案:

答案 0 :(得分:-1)

根据您的示例:

var divs = document.getElementsByTagName('div');

alert(divs[0].innerText);

由于您的第一个<div>没有结束标记,因此输出将为

'I want grab this text.. text grab2'

如果您想获得第一个<div>的文字,只需关闭代码。

请参阅小提琴here