jQuery UI 대화 상자에서 닫기 버튼을 제거하는 방법은 무엇입니까?


775

jQuery UI로 만든 대화 상자에서 닫기 버튼 ( 오른쪽 상단 의 X) 을 어떻게 제거 합니까?


11
설명서, 첫 번째 자막을 확인하십시오 : api.jqueryui.com/dialog
Mike Cole

1
@ MikeCole이 문서는 1.10 용입니다. 낮은 버전에서 닫기 버튼을 숨기려면 아래 답변과 같은 작업을 수행해야한다고 생각합니다.
Jarrett

1
"ui-dialog-titlebar-close"를 사용하십시오 : "display : none;" jqueryui 모달 대화 상자를 설정할 때
MarcoZen

답변:


711

나는 이것이 결국 작동한다는 것을 알았습니다 (버튼을 찾아 숨기는 열린 기능을 재정의하는 세 번째 줄에 주목하십시오).

$("#div2").dialog({
    closeOnEscape: false,
    open: function(event, ui) {
        $(".ui-dialog-titlebar-close", ui.dialog || ui).hide();
    }
});

모든 대화 상자에서 닫기 버튼을 숨기려면 다음 CSS도 사용할 수 있습니다.

.ui-dialog-titlebar-close {
    visibility: hidden;
}

121
$(".ui-dialog-titlebar-close", ui).hide(); 대화 상자 의 버튼 만 숨 깁니다 .
Anthony Serdyukov

67
ui 매개 변수에서도 작동하지 못했습니다. 나는 $ ( ". ui-dialog-titlebar-close", $ (this) .parent ()). hide ();
Nigel

70
@Anton 'ui'만 지정해도 작동하지 않는다는 점을 지적하고 싶습니다. 'ui.dialog'를 사용해야합니다. 올바른 줄은 $ ( ". ui-dialog-titlebar-close", ui.dialog) .hide ()입니다.
Bradley Mountford

22
@ 브래들리 ui는 나를 위해 작동하지 않았고 ui.dialog는 각 인스턴스에 적용되었습니다. 오픈 함수가 정의 된 하나에 만 적용되도록하려면 다음과 같이해야합니다. $ ( ". ui-dialog-titlebar-close", this.parentNode) .hide ();
Nabab

12
open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
opengrid

361

다음은 페이지의 모든 대화 상자를 능가하지 않는 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' });

작업 예


6
CSS에서 .noTitleDlg .ui-dialog-titlebar {display : none}과 함께 사용할 수 있기 때문에이 방법이 마음에 듭니다.
A. 머레이

11
매우 깨끗한 솔루션 ... +1 버튼을 제거하기 위해 추가 js 기능이 필요하지 않습니다.
Bongs

2
좋은 생각이야 모든 대화 상자에 대해 동일한 열린 방법을 사용하는 상황에서 특정 대화 상자를 대상으로 지정하는 것이 편리하며 특정 인스턴스에 대해 변경하는 것은 실용적이지 않습니다.
ZolaKt

3
내가 가장 좋아하는 솔루션. 나는 이와 같은 것이 최선의 방법이라고 생각했다. 이미 여기에 코딩 해 주셔서 감사합니다. 이를 바탕으로 대화 상자 내용 div의 클래스 속성을 사용하여 "닫지 않은"클래스를 넣을 수있는이 변형을 사용하고 싶습니다.dialogClass : $("#my-dialog-id").attr("class"),
LS

탈출시 폐쇄를 막으려면이 솔루션을 탈출로 폐쇄 할 수 있습니다.$( ".selector" ).dialog({ dialogClass: 'no-close' , closeOnEscape: false,});
Mladen Adamovic

124

"최상의"답변은 여러 대화 상자에 적합하지 않습니다. 더 나은 해결책이 있습니다.

open: function(event, ui) { 
    //hide close button.
    $(this).parent().children().children('.ui-dialog-titlebar-close').hide();
},

23
이것은 필요한 것보다 더 복잡합니다. $(".ui-dialog-titlebar-close", $(this).parent()).hide();
케빈 판코

@KevinPanko .aspx 페이지에서 ASP.NET v2.0과 함께 jquery ui 데모 사이트에서 제공하는 예제를 사용할 때 제안이 잘 작동합니다. jqueryui.com/demos/dialog/modal-form.html
Matthew Dally

6
.closest ( '. ui-dialog')는 부모를 가정하는 것보다 낫습니다.
technomage 2016 년

86

JavaScript 대신 CSS를 사용하여 닫기 버튼을 숨길 수 있습니다.

.ui-dialog-titlebar-close{
    display: none;
}

모든 모달에 영향을 미치지 않으려면 다음과 같은 규칙을 사용할 수 있습니다

.hide-close-btn .ui-dialog-titlebar-close{
    display: none;
}

.hide-close-btn대화 상자의 최상위 노드에 적용 하십시오.


3
이 대답은 쉽고 간단했습니다. 그러나 모든 대화 상자에서 버튼을 비활성화하려는 경우에만 적용됩니다.
Mark Brittingham

@MarkBrittingham 모달과 셀렉터에 커스텀 CSS 클래스를 적용하면 원하는 사람에게 적용됩니다
Juan Mendes

48

공식 페이지 에 표시 되고 David이 제안한대로 :

스타일을 만듭니다.

.no-close .ui-dialog-titlebar-close {
    display: none;
}

그런 다음 닫기 버튼을 숨기려면 대화 상자에 닫기 클래스를 추가하면됩니다.

$( "#dialog" ).dialog({
    dialogClass: "no-close",
    buttons: [{
        text: "OK",
        click: function() {
            $( this ).dialog( "close" );
        }
    }]
});

41

나는 이것이 더 낫다고 생각한다.

open: function(event, ui) {
  $(this).closest('.ui-dialog').find('.ui-dialog-titlebar-close').hide();
}

문제는 때때로 다른 대화에 대한 닫기 버튼을 숨기는 것입니다. 그것을 방지하는 방법.
Zaveed Abbasi

심지어 open 사용 : function (event, ui) {$ (this) .closest ( '. ui-dialog'). find ( '. ui-dialog-titlebar-close'). show (); } 작동하지 않습니다.
Zaveed Abbasi

34

.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>

여기 데모


25

Robert MacLean의 답변이 효과가 없었습니다.

그러나 이것은 나를 위해 작동합니다 :

$("#div").dialog({
   open: function() { $(".ui-dialog-titlebar-close").hide(); }
});

9
$("#div2").dialog({
   closeOnEscape: false,
   open: function(event, ui) { $('#div2').parent().find('a.ui-dialog-titlebar-close').hide();}
});

9

위의 어느 것도 작동하지 않습니다. 실제로 작동하는 솔루션은 다음과 같습니다.

$(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
})

그것이 당신을 위해 작동하는지 확인하십시오.


7

버튼을 숨기는 가장 좋은 방법은 버튼을 data-icon 속성으로 필터링하는 것입니다.

$('#dialog-id [data-icon="delete"]').hide();

6

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

6

클래스 비활성화의 경우 짧은 코드 :

$(".ui-dialog-titlebar-close").hide();

사용될 수있다.


6

대화 상자 위젯에 의해 추가 된 닫기 버튼에는 'ui-dialog-titlebar-close'클래스가 있으므로 .dialog ()를 처음 호출 한 후 다음과 같은 명령문을 사용하여 닫기 버튼을 다시 제거 할 수 있습니다.

$( 'a.ui-dialog-titlebar-close' ).remove();

6

대화 상자의 닫기 이벤트를 잡습니다. 그런 다음이 코드는 <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();
  });
},

5
$(".ui-button-icon-only").hide();

2
아이콘 만 숨기면 JS 대신 직선 CSS를 사용할 수 있어야합니다. 모든 .hide()것은 display:noneCSS에 설정 되어 있으므로 $(".ui-button-icon-only").hide();기능적으로는 같습니다 .ui-button-icon-only { display: none; }.
KyleMit

3

헤더 행을 제거 할 수도 있습니다.

<div data-role="header">...</div>

닫기 버튼을 제거합니다.



2

달성하는 쉬운 방법 : (에서 이것을하십시오 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
    },
    ....
});

1

내 앱의 여러 곳에서 이것을하고 있다는 것을 알았으므로 플러그인으로 포장했습니다.

(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();

0

나는 1 명의 라이너의 팬이다 (그들이 일하는 곳!). 여기 나를 위해 일하는 것이 있습니다 :

$("#dialog").siblings(".ui-dialog-titlebar").find(".ui-dialog-titlebar-close").hide();

0

이 순수 CSS 라인을 사용하는 것은 어떻습니까? 주어진 ID를 가진 대화 상자에 가장 깨끗한 해결책을 찾았습니다.

.ui-dialog[aria-describedby="IdValueOfDialog"] .ui-dialog-titlebar-close { display: none; }

-1

아래 코드로 닫기 버튼을 제거 할 수 있습니다. 유용한 다른 옵션들도 있습니다.

$('#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();
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.