我的 JQuery 语法有什么问题吗?
这段代码给我带来了语法错误:
$("body").live("click", (function(){
if ((! mouse_is_inside) && ($("div#notification_box").is(":visible"))) {
$("div#notification_box").hide();
$("p.exclamation").removeClass("exclamation_hover");
$.ajax("/videos/update_box.js");
}
});
This code is throwing me a syntax error:
$("body").live("click", (function(){
if ((! mouse_is_inside) && ($("div#notification_box").is(":visible"))) {
$("div#notification_box").hide();
$("p.exclamation").removeClass("exclamation_hover");
$.ajax("/videos/update_box.js");
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除
function
之前的(
。括号不匹配。Remove the
(
beforefunction
. You have mismatched parentheses.在
function(){
之前有一个额外的(
这是正确的代码:
You have an extra
(
right beforefunction(){
Here is the proper code: