Jquery Custombox 404 Error

Jquery Custombox 404 Error

本文关键字:Error Custombox Jquery      更新时间:2023-09-26

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');">&times;</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',它显示但不正确。

try this

<a href="#modal" id="show">Open modal window</a>