Jquery IE下报错:缺少标识符、字符串或数字

网上有这种错误改正方法,但是都不符合我的规范,


这是网上的说明:

使用Jquery写特效,firefox、chrome,甚至IE8都能正常运行,不报错,但偏偏IE7就会报错:

消息: 缺少标识符、字符串或数字

相关代码如下:

 代码如下复制代码

$(".test").css({
position:'absolute',
left:0,
top:0,
    zIndex:1,
})

这是因为.css({})属性对最后结尾一项zIndex:1后面还带一逗号“,”结束,删除这个逗号,正确代码如下:

 代码如下复制代码

$(".test").css({
position:'absolute',
left:0,
top:0,
 zIndex:1
})

其它浏览器运行一样正常,关键是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中写的注释, <!--  显示行数 -->应改为 /* 显示行数 */

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值