$("#dialog-cust-grp,#dialog-cust-nm").dialog({
open: function(event, ui) {
$("a.ui-dialog-titlebar-close").remove();
},
bgiframe: true,autoOpen: false,closeOnEscape: false,
resizable: false,modal: true,show: "drop",hide: "drop",
draggable: false,zIndex: 10000,
buttons: {'Ok': function() {$(this).dialog("close");
if (selector is #dialog-cust-nm){
alert(“hello....”);
}
}
});
2つの異なるセレクターを持つ上記のコードに基づいて、つまり、上記のようなことを行う手段が必要なため、$("#dialog-cust-grp,#dialog-cust-nm")
どのセレクターが呼び出しで実際に使用されているかを確認する方法があります。.dialog()
If (selector is #dialog-cust-nm){
alert(“hello....”);
}
これは可能ですか?