使用fancybox,报如下错误:The requested content cannot be loaded. Please try again later.的解决方法

  • Post author:
  • Post category:其他


使用fancybox,报如下错误:The requested content cannot be loaded. Please try again later.的解决方法:

正确使用方法:

<body>
    <a href="#inline2" id="modal" class="fancybox">aaa</a>
    <div id="inline2" style="display: none">fdsafs</div>
</body>
<script>
    $(function(){
        $("#modal").fancybox();
        $("#inline2").show();
        $("#modal").click();
    })
</script>

出现该问题十有八九是因为:a的href值与div的id值不一致造成的。



版权声明:本文为zzm628原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。