JQEasy-ui在IE9以下版本中二次載入的問題分析及處理方法

來源:互聯網
上載者:User

網上答案說是因為Easy-ui在低版本時應將class樣式刪去,而在javascript裡寫url,因為class裡有url的話javascript裡也存在url,就會使頁面重新整理倆次,但是測試後沒有解決我的問題,後來通過反覆測試終於找到問題,

<ul id="eva" style=" font-size:25px; "></ul>

因為在頁面寫了style,將style裡的樣式刪去就可以解決問題了,現附上完整的ajax動態樹和Grid表格代碼。

<html><head> <title>Tree</title> <link href="../../Content/JQEasyUI/themes/default/easyui.css" rel="stylesheet" type="text/css" /> <link href="../../Content/JQEasyUI/themes/icon.css" rel="stylesheet" /> <script src="../../Scripts/jquery-1.4.4.min.js" type="text/javascript"></script> <script src="../../Scripts/jquery.unobtrusive-ajax.js" type="text/javascript"></script> <script src="../../Scripts/jquery.easyui.min.js" type="text/javascript"></script> <script src="../../Scripts/easyui-lang-zh_CN.js" type="text/javascript"></script> <script type="text/javascript">  var NodeText;  var time;  var treeeva;  $(function () {   initTable();   $("#SelectForm").css("display", "none");   bindSearcheClick();    $('#eva').tree({     url: '/OEE/GetTree',     method: 'get',     animate: true,     checkbox: true    });  });  //初始化表格  function initTable() {   $('#tt').datagrid({    url: '/OEE/Details',    title: 'OEE',    width: 700,    height: 360,    fitColumns: true,    idField: 'Fid',    loadMsg: '正在載入裝置的資訊...',    pagination: true,    singleSelect: false,    pageSize: 10,    pageNumber: 1,    pageList: [10, 20, 30],    queryParams: {//要傳入的參數     NodeResult: NodeText,     SelectTime: $('#SelectTime').datebox('getValue')    },    columns: [[//{EID, ETypeName, ThenTypeInfoTID, EtypeNum}      {field: 'Num', title: '裝置編號', width: 80, align: "center" },      { field: 'Name', title: '裝置名稱', width: 80, align: "center" },      { field: 'EarlyTimeOEE', title: '早班OEE', width: 80, align: "center" },      { field: 'MiddleTimeOEE', title: '午班OEE', width: 80, align: "center" },      { field: 'LaterTimeOEE', title: '晚班OEE', width: 80, align: "center" },       {        field: 'DelFlag', title: '操作', width: 80, align: 'center',        formatter: function (value, row, index) {         var str = "<a Fid='" + row.Fid + "' class='SelectInfo' href='javascript:void(0)'>明細</a>  ";         return str;        }       }    ]],    onHeaderContextMenu: function (e, field) {    },    onLoadSuccess: function (data) {     $(".SelectInfo").unbind("click");     $(".SelectInfo").bind("click", function () {      doSelect($(this).attr("Fid"), time);      return false;     });    }   });  }  function doSelect(Fid, Time) {   var reg = new RegExp("-", "g");   var strobj = Fid.toString();   var newstr = strobj.replace(reg, "$");   $('#SelectFrame').attr('src', '/OEE/GetSelectInfo/' + Fid + '/' + Time);   $('#SelectForm').css('display', 'block');   $('#SelectForm').dialog({    width: 470,    height: 470,    modal: true,    title: "顯示明細資訊",    collapsible: true,    minimizable: true,    maximizable: true,    resizable: true,    buttons: [{     id: 'btnSelect',     text: '確定',     iconCls: 'icon-add',     handler: function () {      $("#SelectForm").dialog("close");     }    }]   });  }  //綁定搜尋查詢的 點擊事件  function bindSearcheClick() {   //linkButtonSearch   $("#linkButtonSearch").click(function () {    var nodes = $('#eva').tree('getChecked');    var s = '';    for (var i = 0; i < nodes.length; i++) {     if (s != '') s += ',';     s += nodes[i].id;    }    NodeText = s;    time = $('#SelectTime').datebox('getValue');    initTable();   });  } </script></head><body> <div style="width: 1000px">  <div style="width: 200px; float: left">   <div style="margin: 23px 0;">   </div>   <div class="easyui-panel" style="padding: 5px; border-radius: 5px;">    <ul id="eva" >    </ul>   </div>  </div>  <div id="Right">   <div id="query">    查詢時間:<input class="easyui-datebox" name="SelectTime" id="SelectTime" />    <a id="linkButtonSearch" href="javascript:void(0)" class="easyui-linkbutton" data-options="iconCls:'icon-search'">     查詢</a>   </div>   <table id="tt" style="width: 700px;" title="標題" iconcls="icon-edit">   </table>   <div id="SelectForm">    <iframe id="SelectFrame" src="javascript:void(0)" frameborder="0" width="100%" height="100%">    </iframe>   </div>  </div> </div></body></html>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.