我使用 JQ UI 模式对话框,并在对话框中包含了几个按钮。
如何为这些按钮提供单独的 ID(以防我想将它们定位为一些 CSS 更新)?
TIA
您必须设置每个按钮配置,例如:
<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" );
}
}]
});
看看这里:http: //jsfiddle.net/QtYWm/2/
$('#dialog').dialog({
buttons: [{
id:"customID",
text: "Your Button"
}]
});