我正在使用JQ UI模式对话框,并在对话框中包含了几个按钮。
如何为这些按钮提供个人ID(如果我想针对某些CSS更新定位它们)?。
TIA
答案 0 :(得分:0)
$('#dialog').dialog({
buttons: [{
id:"customID",
text: "Your Button"
}]
});
答案 1 :(得分:0)
您必须设置每个按钮配置,例如:
<div id="dialogConfirm">Some message here</div>
和
$( "#dialogConfirm" ).dialog({
resizable: false,
height:180,
modal: true,
buttons: [{
id: "someId",
text:"some label",
click: function() {
$( this ).dialog( "close" );
}
},{
id: "secondId",
text: "cancel",
click: function() {
$( this ).dialog( "close" );
}
}]
});