1

我正在尝试在 innerHTML 中插入 HTML 注释,但它在 IE8 中不接受。FF 工作正常。

<html>
<head>
    <title>testing</title>
    <script language="javascript">
    function testcmt() {
        var el2 = document.createElement("div");
        el2.innerHTML = "<!--Sample--><p>Sample</p>";
        alert( el2.innerHTML );
    }
    </script>

</head>
<body id="BodyID">
    <h2>Test</h2>
    <input type="button" value="Sample" onmousedown="testcmt(); return false">
</body>

IE 只显示<p>Sample</p>,评论不见了。任何指针?

4

1 回答 1

4

您很可能应该使用document.createComment

function testcmt() {
    var el2 = document.createElement("div");
    el2.setAttribute('id', 'oxe_rem_now' + '232323232323');
    el2.appendChild(document.createComment('text for comment'));
    var p = document.createElement("p");
    p.innerText = "Sample";
    el2.appendChild(p);
    alert(el2.innerHTML);
}

样本

于 2013-02-21T15:42:45.117 回答