任何人在这段代码中看到问题.... firebug告诉我)缺少
$('#addschool').dialog({
autoOpen:false,
buttons:{
"add school":function(){alert(school added);},
cancel:function(){$(this).dialog("close");}
}
});
$(this).dialog('open');
答案 0 :(得分:4)
是的,它应该是alert('school added');
,而不是alert(school added);
不要忘记引号:)
答案 1 :(得分:2)
您遗失了}
并且缺少引号,现在传递了jslint:
$('#addschool').dialog({
autoOpen:false,
buttons:{
"add school": function(){
alert("school added");
},
cancel:function() {
$(this).dialog("close");
}
}
});
$(this).dialog('open');
答案 2 :(得分:0)
我想 警报(学校补充);应该警惕(“学校补充”);?