我想要有多个按钮.我试图在括号之间复制
代码,但不工作.
buttons: {
"Close": function() {
$(this).dialog("close");
}
使用这种格式创建他们,’按钮文本’:function(){}中间有一个逗号,如下所示:
$("#mydialog").dialog({
buttons: {
'Confirm': function() {
//do something
$(this).dialog('close');
},'Cancel': function() {
$(this).dialog('close');
}
}
});
原文链接:https://www.f2er.com/jquery/153680.html