2

我正在尝试像 jQuery .html() 那样替换 div 的内容。这是我到目前为止所做的:

$html = "
<html>
    <body>
        <div id="main">
            <div id="text">
                <p>This is some text</p>
            </div>
        </div>
    </body>
</html>
";

$doc = new DOMDocument();
$doc->loadHTML($html);
// change div id "text" contents
// $("#text").html("<p>This is some new text</p>");
echo $doc->saveHTML();

任何帮助,将不胜感激!谢谢你。

4

1 回答 1

3

您可以使用以下代码,您只需要更改nodeValue

$doc->loadHTML($html);
$doc->documentGetElementById('text')->nodeValue = "<p>This is some new text</p>";
echo $doc->saveHTML();
于 2013-08-17T00:04:37.203 回答