如何为我的代码解决IE10问题

时间:2013-05-28 09:54:42

标签: javascript internet-explorer internet-explorer-10

这是我的代码,通过它我无法使用IE10显示内容,而它在所有IE9,IE8,IE7中显示

// Clear the Table Body before insert the rows

this.V_Profile = function(value) {

    var tbl = new NG_ConfTable();

    tbl.addCaptionRow("Profile Definition");

    tbl.addCaptionRow(this.V_ProfileDef(value));

    tbl.addCaptionRow(" ");



    tbl.addCaptionRow("Client Authentication");

    //tbl.addCaptionRow(new V_AuthSettings(value));

    tbl.addCaptionRow(new V_AuthSettings(value, {networkAuthChangeAction : this.viewClientAuthSetting}));

    tbl.addCaptionRow(" ");



    //var clientForm = Element.wrap(this.V_ClientAuth(value), "form", {"id" : "clientAuthSetting"});

    tbl.addCaptionRow("Authentication Settings");

    tbl.addCaptionRow(this.V_ClientAuth(value), "clientAuth");

    tbl.addCaptionRow(" ");



    tbl.addCaptionRow("Wireless QoS");

    tbl.addCaptionRow(this.V_Qos(value));



    var form = Element.wrap(tbl, "form", {"id" : value["#"]});



    formChangeAction(form, function(){

        buttonPanel.get("cancel").enable(true);

    });



    return form;

}.bind(this);           

// Insert the Row Element

以上代码适用于IE10以外的所有浏览器,因此我将额外的代码添加到正确的plz建议我在IE10中工作。

1 个答案:

答案 0 :(得分:0)

http://mottie.github.io/tablesorter/docs/example-update-all.html可以有用吗?这适用于ie8,我希望能够理解你的需求。