0
裏面在頁面有元素TEXT如何獲得文本元素TD DomXPath
我試圖做出這樣的:
$tables = $xpath->query("//td[@class='enterHeader']");
foreach($tables as $a){
print $a->nodeValue." - ".$a->getAttribute("text")."<br/>";
}
但它確實給我造成... 這裏有什麼問題?
$表= $ xpath->查詢( 「// TD [@類= 'enterHeader'] /文本()[正常化空間()]」); foreach($表爲$ a){ \t \t \t print $ a-> nodeValue; \t \t \t} – Oleg
如果您只需要文本內容,則不需要在NodeList上工作。查看我的編輯 –
print $ xpath-> evaluate給我空結果,頁面乾淨 – Oleg