有人可以帮我向 ui-dialog-buttonset 添加一个类。我有 2 个按钮“添加”和“删除”,并希望适当地设置每个按钮。
如何向“添加此项目”的按钮添加一个类
$dialogContent.dialog({
modal: true,
resizable: false,
title: "New thing",
close: function() {
$dialogContent.dialog("destroy");
$dialogContent.hide();
$('#other').stuff("removeUnsavedEvents");
},
buttons: {
'Add this item' : function() {
if(client_url.val() == '')
{
alert('client not selected');
$other.stuff("removeUnsavedEvents");
$dialogContent.dialog("close");
return;
}
$dialogContent.dialog("close");
},
});
update_stuff_overview();
}
}
}
谢谢
编辑从 ui-dialog 插件添加 html..
<div class="ui-dialog-buttonset">
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button">
<span class="ui-button-text">Add this item</span>
</button>
</div>
我正在尝试将“new_class”添加到上面的按钮。