当前位置: 代码迷 >> JavaScript >> js异常 SyntaxError: missing : after property id
  详细解决方案

js异常 SyntaxError: missing : after property id

热度:687   发布时间:2013-09-07 14:12:45.0
js错误 SyntaxError: missing : after property id
在用jquery的post方法时
$.post('adminCheckTpmisPlans.do',{'test',str},function(f){
...
})

报如下错误
SyntaxError: missing : after property id

原因是传参数时 应该是JSON格式  keyv/alue形式
把{'test',str}改为{'test':str}就行了。
  相关解决方案