码迷,mamicode.com
首页 > 其他好文 > 详细

SyntaxError: identifier starts immediately after numeric literal错误解决办法

时间:2014-12-12 13:08:11      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   for   on   

今天在项目中 用ajax跳转并在url中传数据时遇到了一个语法错误

function save(flag,checkFlag){
        $(‘#allInfoForm‘).ajaxSubmit({
            dataType : ‘json‘,
            type : "post",
            data:{"operationFlag":flag,"checkFlag":checkFlag,"applicationId":‘$!applicationId‘},
            success : function(data) {
                if (data.success) {
                    Dialog.message(data.message,"提示", function() {
                     self.location.href=contextPath+"/intopieces/applyintopiecewait/change.page?applicationId="+‘$!applicationId‘+"&customerId="+‘$!customerId‘+"&applyQuota="+‘$!applyQuota‘+"&serialNumber="+‘$!serialNumber‘;
                     });
                } else {
                    Dialog.message(data.message);
                    return false;
                }
            },
            error : function(data) {
                Dialog.closeLoad();
                Dialog.message("操作失败");
                return false;
            }
        });
    }

SyntaxError: identifier starts immediately after numeric literal

参数的值为:

applicationId 402881e74a384553014a385826a70003
applyQuota 1000
customerId 0000000049bb6a710149bb872c1d0007
serialNumber 402881e74a384553014a385882e5000d

解决办法:

?applicationId="+‘$!applicationId‘+"&customerId="+‘$!customerId‘+"&applyQuota="+‘$!applyQuota‘+"&serialNumber="+‘$!serialNumber‘;

拼接时 把要传的数据用‘‘括起来 即可。

SyntaxError: identifier starts immediately after numeric literal错误解决办法

标签:style   blog   io   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/janwillem/p/4159296.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!