«bootstrap-modal» 태그된 질문

30
수직 중심 부트 스트랩 모달 창
뷰포트 (가운데)에 모달을 중앙에 놓고 싶습니다 .CSS 속성을 추가하려고했습니다. .modal { position: fixed; top:50%; left:50%; } 이 예제를 사용하고 있습니다 http://jsfiddle.net/rniemeyer/Wjjnd/ 나는 시도했다 $("#MyModal").modal('show').css( { 'margin-top': function () { return -($(this).height() / 2); }, 'margin-left': function () { return -($(this).width() / 2); } })

14
부트 스트랩 모달 : 함수가 아닙니다.
내 페이지에 모달이 있습니다. Windows가로드 될 때 호출하려고하면 다음과 같은 오류가 콘솔에 인쇄됩니다. $(...).modal is not a function 이것은 내 모달 HTML입니다. <div class="modal fade" id="prizePopup" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> × </button> <h4 class="modal-title" id="myModalLabel"> This Modal title </h4> …

2
부트 스트랩의 tabindex =“-1”은 무엇입니까?
tabindexBootstrap 3 의 속성은 무엇입니까 ? 문서는 실제로 모든 모달에서 사용하지만 그들에 대해 아무것도 말하지 않습니다. 나는 그것의 사용과 관련하여 이것을 찾았습니다. 키보드 및 보조 기술 사용자를위한 액세스 가능한 도구 설명 키보드로 탐색하는 사용자 및 특히 보조 기술 사용자의 경우 링크, 양식 컨트롤 또는 tabindex = "0"속성이있는 임의의 요소와 같은 …


9
부트 스트랩 모델 텍스트 상자에 Java 스크립트 변수를 값으로로드하는 방법
부트 스트랩 모델 입력 상자에 자바 스크립트 변수로드에 문제가 있습니다. setTimeout(function() { swal({ title: "OverTime Status!", text: "You Need to get Sub OT Approval " + data.value + " Hours to Time allocate in the department", type: "warning", confirmButtonText: "OK" }, function(isConfirm) { if (isConfirm) { $('#hours_work').val(data.value); //data.value alert the …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.