jQuery UI 대화 상자에서 닫기 버튼을 제거하는 방법은 무엇입니까?
jQuery UI로 생성 된 대화 상자에서 닫기 버튼 ( 오른쪽 상단 모서리 의 X) 을 제거하려면 어떻게해야 합니까?
나는 이것이 결국 작동한다는 것을 알았습니다 (버튼을 찾아서 숨기는 열기 기능을 재정의하는 세 번째 줄에 유의하십시오) :
$("#div2").dialog({
closeOnEscape: false,
open: function(event, ui) {
$(".ui-dialog-titlebar-close", ui.dialog || ui).hide();
}
});
모든 대화 상자에서 닫기 버튼을 숨기려면 다음 CSS도 사용할 수 있습니다.
.ui-dialog-titlebar-close {
visibility: hidden;
}
다음은 페이지의 모든 대화 상자를 넘지 않는 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' });
"최상의"답변은 여러 대화 상자에 적합하지 않습니다. 여기에 더 나은 해결책이 있습니다.
open: function(event, ui) {
//hide close button.
$(this).parent().children().children('.ui-dialog-titlebar-close').hide();
},
CSS를 사용하여 JavaScript 대신 닫기 버튼을 숨길 수 있습니다.
.ui-dialog-titlebar-close{
display: none;
}
모든 모달에 영향을주지 않으려면 다음과 같은 규칙을 사용할 수 있습니다.
.hide-close-btn .ui-dialog-titlebar-close{
display: none;
}
그리고 .hide-close-btn
대화 상자의 최상위 노드에 적용
공식 페이지 에 표시 되고 David가 제안한대로 :
스타일 만들기 :
.no-close .ui-dialog-titlebar-close {
display: none;
}
그런 다음 닫기 버튼을 숨기기 위해 대화 상자에 닫기 없음 클래스를 추가 할 수 있습니다.
$( "#dialog" ).dialog({
dialogClass: "no-close",
buttons: [{
text: "OK",
click: function() {
$( this ).dialog( "close" );
}
}]
});
나는 이것이 더 좋다고 생각한다.
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>
Robert MacLean의 대답은 저에게 효과가 없었습니다.
그러나 이것은 나를 위해 작동합니다.
$("#div").dialog({
open: function() { $(".ui-dialog-titlebar-close").hide(); }
});
$("#div2").dialog({
closeOnEscape: false,
open: function(event, ui) { $('#div2').parent().find('a.ui-dialog-titlebar-close').hide();}
});
위의 어느 것도 작동하지 않습니다. 실제로 작동하는 솔루션은 다음과 같습니다.
$(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
})
그것이 당신을 위해 작동하는지 확인하십시오.
The best way to hide the button is to filter it with it's data-icon attribute:
$('#dialog-id [data-icon="delete"]').hide();
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
For the deactivating the class, the short code:
$(".ui-dialog-titlebar-close").hide();
may be used.
The close button added by the Dialog widget has the class 'ui-dialog-titlebar-close', so after your initial call to .dialog(), you can use a statement like this to remove the close button again: It works..
$( 'a.ui-dialog-titlebar-close' ).remove();
I catch the close event of the dialog box. This code then removes the <div>
(#dhx_combo_list
):
open: function(event, ui) {
//hide close button.
$(this).parent().children().children('.ui-dialog-titlebar-close').click(function(){
$("#dhx_combo_list").remove();
});
},
$(".ui-button-icon-only").hide();
You can also remove your header line:
<div data-role="header">...</div>
which removes the close button.
document.querySelector('.ui-dialog-titlebar-close').style.display = 'none'
Easy way to achieve: (Do this in your 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
},
....
});
Since I found I was doing this in several places in my app, I wrapped it in a plugin:
(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)
Usage Example:
$("#dialog").dialog({ /* lots of options */ }).dialogNoClose();
I am a fan of one-liners (where they work!). Here is what works for me:
$("#dialog").siblings(".ui-dialog-titlebar").find(".ui-dialog-titlebar-close").hide();
How about using this pure CSS line? I find this the cleanest solution for a dialog with given Id:
.ui-dialog[aria-describedby="IdValueOfDialog"] .ui-dialog-titlebar-close { display: none; }
You can remove the close button with the code below. There are other options as well which you might fight useful.
$('#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();
참고URL : https://stackoverflow.com/questions/896777/how-to-remove-close-button-on-the-jquery-ui-dialog
'development' 카테고리의 다른 글
Git : 두 가지의 가장 최근 공통 조상 찾기 (0) | 2020.09.29 |
---|---|
Python에서 파일을 이동하는 방법 (0) | 2020.09.29 |
Docker 이미지와 컨테이너의 차이점은 무엇입니까? (0) | 2020.09.29 |
PHP 임의 문자열 생성기 (0) | 2020.09.29 |
기본 "긴 폴링"을 어떻게 구현합니까? (0) | 2020.09.29 |