0
버튼을 클릭하면 모달 대화 상자가 열리 며 다른 사이트가 해당 대화 상자에로드됩니다. 일부 자습서를 사용했지만 여전히 작동하지 않는 것처럼 보입니다. 정확하게 .. 현재 버튼을 클릭하면 화면이 약간 회색으로 표시되지만 대화 상자는 나타나지 않습니다. 누군가가 잘못된 부분을 볼 수 있습니까?부트 스트랩 모달 대화 상자가 표시되지 않습니다.
<a href="www.google.co.uk" class="btn bootpopup" title="This is title" target="popupModal2">Visit site</a>
<div id="popupModal2" class="modal hide fade" tabindex="-1" role="dialog">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Add new Item</h3>
</div>
<div class="modal-body">
<iframe src="" style="zoom:0.60" frameborder="0" height="250" width="99.6%"></iframe>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal">OK</button>
</div>
자바 스크립트
$('.bootpopup').click(function(){
var frametarget = $(this).attr('href');
var targetmodal = $(this).attr('target');
if (targetmodal == undefined) {
targetmodal = '#popupModal';
} else {
targetmodal = '#'+targetmodal;
}
if ($(this).attr('title') != undefined) {
$(targetmodal+ ' .modal-header h3').html($(this).attr('title'));
$(targetmodal+' .modal-header').show();
} else {
$(targetmodal+' .modal-header h3').html('');
$(targetmodal+' .modal-header').hide();
}
$(targetmodal).on('show', function() {
$('iframe').attr("src", frametarget);
});
$(targetmodal).modal({show:true});
return false;
});