显示表上的 JavaScript 错误
当我使用这段代码时:
$("#flex1").flexigrid({
colModel : [
{display :'Customer ID',name : 'customer_id',width : 100,sortable : true,align : 'left'},
{display :'Customer Full Name',name : 'customer_fullname',width : 130,sortable : true,align : 'left'},
{display : 'Admin License No',name : 'admin_license_number',width : 130,sortable : true,align : 'left'},
{display : 'Admin License Key',name : 'admin_license_key',width : 130,sortable : true,align : 'left'},
{display : 'User License Number',name : 'user_license_number',width : 130,sortable : true,align : 'left'},
{display : 'ska2',name : '',width : 130,sortable : true,align : 'left'},
],
sortname: "customer_id",
sortorder: "asc",
usepager: true,
title: 'List',
useRp: true,
rp: 10,
showTableToggleBtn: true,
width: 1000,
height: 500,
});
发生错误并且不显示任何内容:
错误:需要标识符、字符串或数字。
现在我正在使用PHP4,并在上面的PHP5上尝试后尝试实现。
When I use this piece of code:
$("#flex1").flexigrid({
colModel : [
{display :'Customer ID',name : 'customer_id',width : 100,sortable : true,align : 'left'},
{display :'Customer Full Name',name : 'customer_fullname',width : 130,sortable : true,align : 'left'},
{display : 'Admin License No',name : 'admin_license_number',width : 130,sortable : true,align : 'left'},
{display : 'Admin License Key',name : 'admin_license_key',width : 130,sortable : true,align : 'left'},
{display : 'User License Number',name : 'user_license_number',width : 130,sortable : true,align : 'left'},
{display : 'ska2',name : '',width : 130,sortable : true,align : 'left'},
],
sortname: "customer_id",
sortorder: "asc",
usepager: true,
title: 'List',
useRp: true,
rp: 10,
showTableToggleBtn: true,
width: 1000,
height: 500,
});
an error occurs and nothing is displayed:
Error: Expected Identifier, string or number.
Right now I'm using PHP4 and try implement after I try it on PHP5 above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在 IE8 或更低版本中进行测试,并且对象中的那些尾随逗号是错误的:
例如,
I'm assuming you're testing in IE8 or below and those trailing comma's in your object are error:
For example,