jquery custombox 1.13有问题
<script src="scripts/jquery.custombox.js"></script>
<script>
$(function () {
$('#show').on('click', function ( e ) {
$.fn.custombox( this, {
effect: 'fadein',
});
e.preventDefault();
}).trigger('click');
});
</script>
HTML:
<!-- Start Modal Content -->
<div id="modal" style="display: none;">
<div>
<button type="button" class="close" onclick="$.fn.custombox('close');">×</button>
<h4>WARNING: Dear Visitor</h4>
</div>
<div>
<p>You have blah blah</p>
</div>
</div>
<!-- End Modal Content -->
我有一个html元素,其中id = show表示触发器,但模态框一直给我错误404.如果我添加url: '#modal'
,它会显示但不正确。
答案 0 :(得分:0)
试试这个
<a href="#modal" id="show">Open modal window</a>