UPDATE1:隨着完整的源代碼:如何使用PHPQuery去除HTML標籤?
$html1 = '<div class="pubanunciomrec" style="background:#FFFFFF;"><script type="text/javascript"><!--
google_ad_slot = "9853257829";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>';
$doc = phpQuery::newDocument($html1);
$html1 = $doc->remove('script');
echo $html1;
的源代碼本以上。我也讀過,存在一個錯誤,http://code.google.com/p/phpquery/issues/detail?id=150我不知道它是否解決了。
有關如何從此HTML中刪除< 腳本>的任何線索?
最好的問候,
嗨,
我需要從使用PhpQuery一個HTML文檔中刪除所有< 腳本>標記。
我也做了以下內容:
$doc = phpQuery::newDocument($html);
$html = $doc['script']->remove();
echo $html;
它不刪除< 腳本>標記和內容。使用PhpQuery可以做到這一點嗎?
最好的問候,
您好,感謝您的答覆。它不工作。還有什麼線索?最好的問候, – 2011-01-10 17:27:48