嗨, 兩個問題的DOMDocument類...php DOMDocument:在特定的ID中選擇特定的類名?
我用jQuery這樣做:
$('#wpf-wrapper .wpf-table .wpf-input').addClass('input-field');
我想要做同樣與DOMDocument類!如何才能做到這一點?我怎樣才能選擇這個?
第二個問題是:爲什麼這不起作用?
$dom = new SmartDOMDocument();
$dom->loadHTML($shortcode);
$xpath = new DOMXPath($dom);
$qr = $dom->getElementById('quick-reply-submit');
//$qr->setAttribute('class', 'btn small width480');
//ERROR: Call to a member function on a non-object...??
謝謝你的幫忙!
什麼是smartdomdocument? – Gordon 2011-04-03 15:58:35
它是一個非常有用的類,它擴展了DOMDocument類以獲得更好的UTF-8支持等等。 – matt 2011-04-03 16:26:20
關心在[最佳解析HTML方法]中提供與該lib的鏈接的答案(http://stackoverflow.com/問題/ 3577641 /最好的方法對語法分析HTML/3577662)?不能傷害它在那裏。 – Gordon 2011-04-03 17:10:04