错误:SyntaxError: identifier starts immediately after numeric literal

Posted 空城里的往日时光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误:SyntaxError: identifier starts immediately after numeric literal相关的知识,希望对你有一定的参考价值。

转载:http://blog.csdn.net/shalousun/article/details/39995443
在用javascript时,当你使用一个字符传作为函数的参数常常会看到语法错误,在firebug下会报SyntaxError: identifier starts immediately after numeric literal ,当然在google下提示就不准确了。 错误原因是:标识符以数字开头 下面直接看例子吧: $(function(){
var str = "509edbe9-2914-431f-9128-97d368b7da0b"; //错误的写法 var html = <button class="button" id="ensure" onclick="test(str)">确定</button>;//把字符串作为参数传给函数,直接报错 //正确的写法 var html = <button class="button" id="ensure" onclick="test(\‘+str+\‘)">确定</button>;//正确执行,注意第一个\后是两个单引号 $("#dd").append(html); }); function test(id){ console.log(id); } <div id="dd"></div>

 

以上是关于错误:SyntaxError: identifier starts immediately after numeric literal的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript onclick传递对象参数(easyui传递一行数据时)错误:uncaught SyntaxError: Unexpected identifier

编写python代码时出现SyntaxError: invalid character in identifier的解决方法

编写python代码时出现SyntaxError: invalid character in identifier的解决方法

SyntaxError:identifier starts immediately after numeric literal

尝试导入时出现 Uncaught SyntaxError: Unexpected identifier error

mongo collection name—SyntaxError: identifier starts immediately after numeric literal