jQuery 语法错误
$(document).ready(function(){
$("#input_6_4\\.3_label").html("City/Borough");
$("#input_6_8\\.3_label").html("City/Borough");
$("#gform_next_button_6_42").click(function(){
alert("hi");
)};
});
Firebug 不断地用上面的代码吐出一个语法错误,违规者是这些字符:
)};
有什么想法是错误的吗,因为代码对我来说似乎很好?
$(document).ready(function(){
$("#input_6_4\\.3_label").html("City/Borough");
$("#input_6_8\\.3_label").html("City/Borough");
$("#gform_next_button_6_42").click(function(){
alert("hi");
)};
});
Firebug keeps spitting out a syntax error with the above code with the offender being these characters:
)};
Any ideas at what's wrong because the code seems good to me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它们的顺序错误:
应该是:
They are in the wrong order:
Should be:
它应该是
});
,在关闭函数体之前关闭参数列表。it should be
});
, you close your arguments list before closing the function body.