是否可以在 jQuery UI 对话框中设置按钮的 ID,以便稍后通过 jQuery 引用它们?例如,触发事件、禁用等?
... in the dialog setup ...
buttons: {
"Sök": function () {
var bValid = true;
},
"OK": function () {
if (OK()) {
getStuffNoteringar($("#txtStuffId").val());
$(this).dialog("close");
}
}
.... later on in some javascript code....
$('#OK').click();