是否可以为HTMLDocument设置outerHTML?

时间:2011-05-08 11:52:17

标签: c# winforms webbrowser-control dom outerhtml

下面是我用来改变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
    {
    }
}

感谢。

1 个答案:

答案 0 :(得分: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";
    }
}