-4

这是我的代码,通过它我无法使用 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 中的所有浏览器,所以我在其中添加了额外的代码,这是正确的请建议我在 IE10 中工作。

4

1 回答 1

0

Could http://mottie.github.io/tablesorter/docs/example-update-all.html be useful? This works on ie8, I hope to have understand your needs.

于 2013-05-28T10:19:48.577 回答