网上有这种错误改正方法,但是都不符合我的规范,
这是网上的说明:
使用Jquery写特效,firefox、chrome,甚至IE8都能正常运行,不报错,但偏偏IE7就会报错:
消息: 缺少标识符、字符串或数字
相关代码如下:
代码如下 | 复制代码 |
$(".test").css({ |
这是因为.css({})属性对最后结尾一项zIndex:1后面还带一逗号“,”结束,删除这个逗号,正确代码如下:
代码如下 | 复制代码 |
$(".test").css({ |
其它浏览器运行一样正常,关键是IE7运行报错问题也得到了解决,所以写JQ代码时,有必要养成【 .css({})属性对最后结尾一项后面禁止加逗号“,”结束 】的习惯
但是我的都没犯这些错,我的是这样的,是jQuery的注释方法问题
这是原来的代码:
<table class="easyui-datagrid" id="dgYuanGong" style="width:1000px;height:570px"
data-options="
toolbar:'#tdBiaoTi',
rownumbers:true, <!-- 显示行数 -->
singleSelect:true,
striped:true, <!-- 交替显示行背景 -->
scrolling:true,
fit:false,
url:'getYuanGongXinXiAll',
idField:'yuanGongId'
">
<thead>
<tr>
<th data-options="width:80,field:'yuanGongMc',align:'center'">姓名</th>
<th data-options="width:40,field:'xingBie',align:'center'">性别</th>
<th data-options="width:80,field:'buMenMc',align:'center'">部门</th>
<th data-options="width:80,field:'jueSeMc',align:'center'">角色</th>
<th data-options="width:100,field:'yuanGongId',formatter:returnBtnColumn,align:'center'">操作</th>
</tr>
</thead>
</table>
这是改正后的代码:
<table class="easyui-datagrid" id="dgYuanGong" style="width:1000px;height:570px"
data-options="
toolbar:'#tdBiaoTi',
rownumbers:true, /* 显示行数 */
singleSelect:true,
striped:true,/* 交替显示行背景 */
scrolling:true,
fit:false,
url:'getYuanGongXinXiAll',
idField:'yuanGongId'
">
<thead>
<tr>
<th data-options="width:80,field:'yuanGongMc',align:'center'">姓名</th>
<th data-options="width:40,field:'xingBie',align:'center'">性别</th>
<th data-options="width:80,field:'buMenMc',align:'center'">部门</th>
<th data-options="width:80,field:'jueSeMc',align:'center'">角色</th>
<th data-options="width:100,field:'yuanGongId',formatter:returnBtnColumn,align:'center'">操作</th>
</tr>
</thead>
</table>
改正方法:这是直接在HTML中写的注释, <!-- 显示行数 -->应改为 /* 显示行数 */