javascript Firebug 错误:标识符在数字文字之后立即开始
我在 firebug 中报告了此错误,但我不知道这意味着什么:
标识符在数字文字之后立即开始
这是我的网页: http://www.austintreeexperts.com/maps/optionUpdateMap.cfm?zoom=15
页面和地图加载后,单击蓝色或绿色标记之一。然后单击其中一个复选框以获取错误。我有一个用于输入复选框的 onclick= 。
I've got this error being reported in firebug, but I have no idea what it means:
Identifier starts immediately after numeric literal
Here is my webpage:
http://www.austintreeexperts.com/maps/optionUpdateMap.cfm?zoom=15
When the page and map loads, click on one of the blue or green markers. Then click on one of the check boxes to get the error. I have an onclick= for the input checkboxes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您的字符串连接已损坏。您需要将方法参数用引号括起来
更正版本
注意:我已将您的所有参数视为字符串
Your string concatenation is broken. You need to wrap your method parameters in quotes
Corrected version
Note : I've treated all your params as strings
如果您尝试命名以数字开头的变量,也会出现此消息。例如。
This message also appears if you've tried to name a variable starting with a numeral. eg.
您的 onclick 需要是:
请注意,我将参数括在引号中,因为它们是字符串。
Your onclick needs to be:
Note that I wrapped the params in quotes as they are strings.
对于这种情况,在我的代码中:
工作正常。
For this case, in my code:
works Fine.