用jquery easyui用来做列表的展示,单独访问页面是正常的,但是把这个页面加到frameset中去的时候,IE7以上都OK,IE6就显示不正常了,求助!$(function(){
$('#datagrid').datagrid({
title:'冲正历史记录列表 ',//表格标题
iconCls:'icon-search',//表格图标
nowrap: true,//是否只显示一行,即文本过多是否省略部分。
striped: true,
url:'/account/Reversal_findAll.action', //action地址
sortName: 'reversalOrdId',
     sortOrder: 'asc',
idField:'reversalOrdId',
loadMsg:'查询中,请稍等!',
fitColumns:false,
fit:true,
striped:true,//是否纹理化表
nowrap:false,//是否把文本显示在一行里
frozenColumns:[[
        {field:'reversalOrdId',title:'冲正记录订单号',width:0,align:'center',sortable:true,hidden:true}
       ]
],
columns:[[
{checkbox:true},
{field:'businessOrdId',title:'业务订单号',width:180,align:'center',sortable:true},     
{field:'memberNo',title:'冲正会员账号',width:150,align:'center',sortable:true},      
{field:'reverseTime',title:'冲正时间',width:180,align:'center',sortable:true},   
{field:'consumType',title:'业务类型ID',width:180,align:'center',sortable:true,hidden:true},    
{field:'consumName',title:'业务类型',width:200,align:'center',sortable:true},    
{field:'tradeAmount',title:'冲正金额(分)',width:180,align:'center',sortable:true},        
{field:'reversalState',title:'冲正状态',width:180,align:'center',sortable:true,formatter:function(val,rec){
if(val=="1001"){return "成功"}else if(val=="1002"){return "失败"}else{return val}
}},
   
]],  
toolbar:[

],

pagination:true, //包含分页
rownumbers:true,
singleSelect:true,
onLoadSuccess:function(data){
if(data.result=="error"){
$.messager.alert('提示信息',data.errorMsg,'error');
};
}
}); $(".datagrid-toolbar").append($("#searchbox"));
$('#datagrid').datagrid('getPager').pagination({
 pageSize: 10,//每页显示的记录条数,默认为10  
         pageList: [10,20,30,50,100],//可以设置每页记录条数的列表  
         beforePageText: '第',//页数文本框前显示的汉字  
          afterPageText: '页    共 {pages} 页',  
         displayMsg: '当前显示 {from} - {to} 条记录   共 {total} 条记录' 
});

$(".search_btn").click(function(){
if($('#backadd_fm').form('validate')){
$('#datagrid').datagrid('load',{
reversalOrdId:$("input[name='reversalOrdId']").val(),
businessOrdId:$("input[name='businessOrdId']").val(),
reversalState:$("input[name='reversalState']").val(),
memberNo:$("input[name='memberNo']").val(),
consumType:$("input[name='consumType']").val()
});
}
});
<body class="ContentBody" >
<table id="datagrid" ></table>

<div id="searchbox"> 
<form id="backadd_fm" method="post" >
<div class="fitem" style="padding-left: 25px;margin-top: 10px">
&nbsp;&nbsp;&nbsp;冲正记录订单号:
<input name="reversalOrdId" class="easyui-validatebox"   validType="Personname" />
&nbsp;&nbsp;&nbsp;业务订单号:
<input name="businessOrdId" class="easyui-validatebox"    />
&nbsp;&nbsp;&nbsp;冲正会员账号:
<input name="memberNo" class="easyui-validatebox"   validType="Personname" />
&nbsp;&nbsp;&nbsp;业务类型:
<select  name="consumType" id="consumType" style="width:220px;" >
<option value="" selected="selected">--请选择--</option>  
</select>
&nbsp;&nbsp;&nbsp;冲正状态:
<select id="reversalState" class="easyui-combobox" name="reversalState" >
<option selected="selected" value="">请选择类型</option>
<option value="1001">成功</option>
<option value="1002">失败</option>
</select>
</div>
<div class="fitem" style="padding-left: 2px;">
<a href="#" class="easyui-linkbutton search_btn" iconCls="icon-search">查询</a></div>
</form>
</div>
<div id="propertyDlg" class="easyui-dialog" data-options="closed:true">
    <table id="dg" >
     </table> 
     </div>
</body>是我的js写的有问题还是别的什么原因呢?请求帮助jQueryeasyuiIE6