답변:
나는 이것이 결국 작동한다는 것을 알았습니다 (버튼을 찾아 숨기는 열린 기능을 재정의하는 세 번째 줄에 주목하십시오).
$("#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>
자바 스크립트.
$( ".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
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();