JQ UIモーダルダイアログを使用しており、ダイアログにいくつかのボタンが含まれています。
これらのボタンに個別の ID を与えるにはどうすればよいですか (CSS の更新の対象にしたい場合)。
ティア
$('#dialog').dialog({
buttons: [{
id:"customID",
text: "Your Button"
}]
});
たとえば、次のように、すべてのボタン構成を設定する必要があります。
<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/