请求的内容无法加载 - fancybox

时间:2016-06-25 18:17:14

标签: javascript ajax

我有下面的单选按钮代码,当我点击打开fancybox模式窗口时需要打开fancybox模式窗口,但点击它时说“请求的内容无法加载”。

$(document).ready(function(){

     $("#cncstoreloc").fancybox({
    target: this,
    href: '#cnc',
    width: 1080,
        height: 400,
        autoSize: false,
        autoCenter: true,
        scrolling: 'auto',
        titleShow: false,
        title: null,
        centerOnScroll: true,
        margin: 0,
        padding: 30,
        //type: 'iframe'
        afterShow: function(){
            $('#quicksearch').on('click', function(){
            $('#cncstorepane').css('display','block');
            });
        },

        afterClose: function(){
            $('#radio_check').removeClass('radio_chk');
        }

}).on("click", function (evt) {

            $('#radio_check').addClass('radio_chk');
        });

});

单选按钮代码:

<div class="" id="clickncollect_form">
   <input type="radio" id="cncstoreloc" name="cncstoreloc">
    <label for="cncstoreloc">Test</label>
   <span id="radio_check" class="check"></span>
</div>

要在fancybox模式窗口中加载的内容div:

<div style="display:none">
   <div class="main-container" id="cnc">
    <h1>CLICK & COLLECT</h1>
   </div>
</div>

有没有人有任何想法,而不是加载内容为什么它会抛出错误。

0 个答案:

没有答案