13

我正在尝试设置innerhtmlhtmlselect标记,但我无法设置此功能;因此,我需要使用该outerhtml功能。这样,不仅是我的代码HARDCODE,而且很荒谬。我已经阅读了“ InnerHTML IE 8 没有”不能正常工作?重置表格',但它没有帮助。

如果您告诉我如何设置innerhtmlhtmlselect标签的功能,我将不胜感激。我的 C# 代码:

public void SetDefaultValue(string ControlID, string ControlValue) 
{      
    System.Windows.Forms.HtmlDocument doc = webBrowser1.Document;
    HtmlElement HTMLControl = doc.GetElementById(ControlID);
        string ListResult;            
        string ListInnerHTML = "";
        ListInnerHTML += "<OPTION value = " + LstString + ">" + LstString + "</OPTION>";                                      
        ListResult = "<SELECT id = " + '"' + HTMLControl.Id + '"' + " type = " + '"' + HTMLControl.GetAttribute("type") + '"' + " title = " + '"' +
            HTMLControl.GetAttribute("title") + '"' + " name = " + '"' + HTMLControl.Name + '"' + " value = " + '"' + HTMLControl.GetAttribute("value") +
            '"' + " size = \"" + HTMLControl.GetAttribute("size") + '"' + HTMLControl.GetAttribute("multiple").ToString() + "\">" + ListInnerHTML + "</SELECT>";
        HTMLControl.OuterHtml = ListResult;                    
}

或者

string _lsthtml = _htmlel.OuterHtml;
string[] _parts = ControlValue.Split(new char[] { ',' });
string _lstinner = "";
foreach (string _lst in _parts)
_lstinner += "<option value=" + _lst + ">" + _lst + "</option>";

_lsthtml = _lsthtml.Insert(_lsthtml.IndexOf(">") + 1, _lstinner);
_htmlel.OuterHtml = _lsthtml;

这段代码有效,但我需要一些高效和干净的东西。该ReturnControlType函数返回type一个 html 标记。

4

3 回答 3

13

这是一个官方的 Internet Explorer 错误:

BUG:Internet Explorer 无法设置 Select Object 的 innerHTML 属性

一种解决方法

meta您可以尝试在文档头部添加以下标签之一:

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

或者

<meta http-equiv="X-UA-Compatible" content="IE=10" />

您还应该正确格式化option标签的value属性(包含LstString在 中'):

ListInnerHTML += "<OPTION value='" + LstString + "'>" + LstString + "</OPTION>";

更可靠的解决方案

由于上述修复可能是您代码的解决方法,我建议使用更可靠的方法。考虑在您的项目中添加对Microsoft.mshtml的引用并修改您的方法,如下所示:

// add this to the top of the file containing your class
using mshtml;

public void SetDefaultValue(string ControlID, string ControlValue)
{
    System.Windows.Forms.HtmlDocument doc = webBrowser1.Document;
    IHTMLDocument2 document = doc.DomDocument as IHTMLDocument2;
    var sel = doc.GetElementById(ControlID);
    HTMLSelectElement domSelect = (HTMLSelectElement)sel.DomElement;
    domSelect.options.length = 0;
    HTMLOptionElement option;

    // here you can dynamically add the options to the select element
    for (int i = 0; i < 10; i++)
    {
        option = (HTMLOptionElement)document.createElement("option");
        option.text = String.Format("text{0}", i);
        option.value = String.Format("value{0}", i);
        domSelect.options.add(option, 0);
    }
}
于 2013-05-23T08:24:14.140 回答
2

我真的不知道为什么 innerHTML 不适合你。
如果不是这样,您可以尝试替代方法:http:
//innerdom.sourceforge.net/

演示

于 2013-05-23T08:05:03.840 回答
2

在此线程中,建议您使用控件的项目集合 如何将项目添加到动态创建的选择(html)控件

有关完整示例,请参阅此页面:http: //msdn.microsoft.com/en-us/library/system.web.ui.htmlcontrols.htmlselect.items.aspx

于 2013-05-24T12:57:42.923 回答