0

下面是我用来更改 IE 中显示的 HTML 的代码。但是它总是抛出异常 - 无法设置 outerHTML 属性。此操作的目标元素无效。不能设置outerHTML吗?

protected void AlterContent(ref HTMLDocument docInput, HTMLDocument docAlteredOutPut)
{
    try
    {
        if (docInput.body.tagName.ToLower() == "body" && docAlteredOutPut.body.innerHTML != null)
        {
            docInput.documentElement.outerHTML = docAlteredOutPut.documentElement.outerHTML;
        }
    }
    catch
    {
    }
}

谢谢。

4

1 回答 1

1

您不能替换<body>元素的 html。没必要,这很好用:

public partial class Form1 : Form {
    public Form1() {
        InitializeComponent();
        webBrowser1.Url = new Uri("http://stackoverflow.com");
        webBrowser1.DocumentCompleted += webBrowser1_DocumentCompleted;
    }
    void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) {
        var body = webBrowser1.Document.Body;
        body.InnerHtml = "pwned";
    }
}
于 2011-05-08T12:45:23.490 回答