0

텍스트 상자가있는 sweetalert 상자가 있습니다. sweetalert는 부트 스트랩 모달 상자에서 열립니다. 파이어 폭스에서 텍스트 상자를 클릭하려고하는데 초점이 맞지 않습니다.Firefox의 부트 스트랩 모달에서 Sweet Alert의 텍스트 상자가 포커스를 맞추지 못함

은 여기 내 달콤한 경고 코드 :

swal(
     { 
      title:    "Create New Design", 
      input:    "text", 
      showCancelButton: true, 
      inputPlaceholder: "Title", 
      preConfirm: function(input) 
      { 
       // code to validate the input 
      } 
     }); 

이는 스크린 샷입니다 :

enter image description here

어떤 도움에 감사드립니다.

감사

주석의 @limonte에 의해 주어진 알려진 문제 사항에 따라
+0

첫째, 당신은 [SweetAlert ** 2 **]를 사용하고 (https://github.com/limonte/sweetalert2) , SweetAlert 아닙니다. 이 두 가지 프로젝트는 다릅니다.이 문제는 도움이 될 수 있습니다. https://github.com/limonte/sweetalert2/issues/374 –

+0

정말 고마워요. 그것은 많은 도움이되었습니다. –

답변

1

는 부트 스트랩 모달 상자는 곧 우리가에 초점을하려고으로 즉시 모달 자체에 초점을두고 enforceFocus라는 기능이 있습니다 엘리먼트는 BS 모달 박스에 싸여 있지 않다.

그래서 지금까지 내가 한 일은 다음과 같은 문서에서 focusin.bs.modal 이벤트를 바인딩 해제하는 것입니다. 그것은 잘 작동합니다.

jQuery('#myModal').on('shown.bs.modal', function() { 
    jQuery(document).off('focusin.modal'); 
}); 

우리는 서로를 제외하고는 다른 어떤 해결책도 없습니다.

우리가 할 수있는 선 아래 사용하는 특정 방법을 가능성이 오버라이드 : 모든

jQuery.fn.modal.Constructor.prototype.enforceFocus = function() { }; 
+0

'jQuery.fn.modal.Constructor.prototype.enforceFocus = function() {};'작동, jsfiddle : https://jsfiddle.net/0Lng89tq/34/ –