我有这样的代码:
$("#confirm").dialog({
modal: true,
title: 'Confirm',
resizable: false,
draggable: false,
autoOpen: false,
height: 200,
width: 550,
buttons: [{
tabIndex: -1,
text: 'Yes',
"class": 'informationLearnButton',
click: function () {
...
}
else {
}
$(this).dialog("close");
}
},
{
tabIndex: -1,
text: 'No',
'className': 'SomeOtherCssClass',
click: function () {
$(this).dialog("close");
}
}]
});
类对我不起作用我尝试使用带有 "" 和不带 "" 的类、类名。jQuery 版本是 1.8.22。现在要做什么