回答:
私はこれが最後に機能したことを発見しました(ボタンを見つけて非表示にするopen関数をオーバーライドする3行目に注意してください):
$("#div2").dialog({
closeOnEscape: false,
open: function(event, ui) {
$(".ui-dialog-titlebar-close", ui.dialog || ui).hide();
}
});
すべてのダイアログで閉じるボタンを非表示にするには、次のCSSも使用できます。
.ui-dialog-titlebar-close {
visibility: hidden;
}
$(".ui-dialog-titlebar-close", ui).hide();
このダイアログのボタンのみを非表示にします。
open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
これは、ページ上のすべてのダイアログを上書きしない、CSSを使用する別のオプションです。
CSS
.no-close .ui-dialog-titlebar-close {display: none }
HTML
<div class="selector" title="No close button">
This is a test without a close button
</div>
JavaScript。
$( ".selector" ).dialog({ dialogClass: 'no-close' });
dialogClass : $("#my-dialog-id").attr("class"),
$( ".selector" ).dialog({ dialogClass: 'no-close' , closeOnEscape: false,});
「最良の」答えは、複数のダイアログには適していません。これがより良い解決策です。
open: function(event, ui) {
//hide close button.
$(this).parent().children().children('.ui-dialog-titlebar-close').hide();
},
$(".ui-dialog-titlebar-close", $(this).parent()).hide();
JavaScriptの代わりにCSSを使用して閉じるボタンを非表示にすることができます。
.ui-dialog-titlebar-close{
display: none;
}
すべてのモーダルに影響を与えたくない場合は、次のようなルールを使用できます
.hide-close-btn .ui-dialog-titlebar-close{
display: none;
}
.hide-close-btn
ダイアログの最上位ノードに適用します
これがいいと思います。
open: function(event, ui) {
$(this).closest('.ui-dialog').find('.ui-dialog-titlebar-close').hide();
}
.dialog()
要素を呼び出すと、イベントハンドラーを使用せずに、いつでも閉じるボタン(およびその他のダイアログマークアップ)を見つけることができます。
$("#div2").dialog({ // call .dialog method to create the dialog markup
autoOpen: false
});
$("#div2").dialog("widget") // get the dialog widget element
.find(".ui-dialog-titlebar-close") // find the close button for this dialog
.hide(); // hide it
別の方法:
ダイアログイベントハンドラー内でthis
は、「$(this).parent()
ダイアログ」される要素を参照し、ダイアログマークアップコンテナーを参照します。
$("#div3").dialog({
open: function() { // open event handler
$(this) // the element being dialogged
.parent() // get the dialog widget element
.find(".ui-dialog-titlebar-close") // find the close button for this dialog
.hide(); // hide it
}
});
参考までに、ダイアログのマークアップは次のようになります。
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable">
<!-- ^--- this is the dialog widget -->
<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
<span class="ui-dialog-title" id="ui-dialog-title-dialog">Dialog title</span>
<a class="ui-dialog-titlebar-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick">close</span></a>
</div>
<div id="div2" style="height: 200px; min-height: 200px; width: auto;" class="ui-dialog-content ui-widget-content">
<!-- ^--- this is the element upon which .dialog() was called -->
</div>
</div>
上記のどれも動作しません。実際に機能するソリューションは次のとおりです。
$(function(){
//this is your dialog:
$('#mydiv').dialog({
// Step 1. Add an extra class to our dialog to address the dialog directly. Make sure that this class is not used anywhere else:
dialogClass: 'my-extra-class'
})
// Step 2. Hide the close 'X' button on the dialog that you marked with your extra class
$('.my-extra-class').find('.ui-dialog-titlebar-close').css('display','none');
// Step 3. Enjoy your dialog without the 'X' link
})
うまくいくか確認してください。
http://jsfiddle.net/marcosfromero/aWyNn/
$('#yourdiv'). // Get your box ...
dialog(). // ... and turn it into dialog (autoOpen: false also works)
prev('.ui-dialog-titlebar'). // Get title bar,...
find('a'). // ... then get the X close button ...
hide(); // ... and hide it
$(".ui-button-icon-only").hide();
.hide()
機能はdisplay:none
CSSで設定されるため$(".ui-button-icon-only").hide();
、機能的にはと同等.ui-button-icon-only { display: none; }
です。
document.querySelector('.ui-dialog-titlebar-close').style.display = 'none'
達成する簡単な方法:(これをで行いますJavascript
)
$("selector").dialog({
autoOpen: false,
open: function(event, ui) { // It'll hide Close button
$(".ui-dialog-titlebar-close", ui.dialog | ui).hide();
},
closeOnEscape: false, // Do not close dialog on press Esc button
show: {
effect: "clip",
duration: 500
},
hide: {
effect: "blind",
duration: 200
},
....
});
アプリのいくつかの場所でこれを実行していることがわかったので、プラグインでラップしました。
(function ($) {
$.fn.dialogNoClose = function () {
return this.each(function () {
// hide the close button and prevent ESC key from closing
$(this).closest(".ui-dialog").find(".ui-dialog-titlebar-close").hide();
$(this).dialog("option", "closeOnEscape", false);
});
};
})(jQuery)
使用例:
$("#dialog").dialog({ /* lots of options */ }).dialogNoClose();
以下のコードで閉じるボタンを削除できます。他にも便利なオプションがあります。
$('#dialog-modal').dialog({
//To hide the Close 'X' button
"closeX": false,
//To disable closing the pop up on escape
"closeOnEscape": false,
//To allow background scrolling
"allowScrolling": true
})
//To remove the whole title bar
.siblings('.ui-dialog-titlebar').remove();