开发者

jQuery,Fancybox show php page with ajax

开发者 https://www.devze.com 2023-03-07 00:40 出处:网络
I am having a problem that is driving me crazy!. I am using Fancybox.net as lightbox on my site. I need to show a php page in the fancybox that is called by a click function.

I am having a problem that is driving me crazy!.

I am using Fancybox.net as lightbox on my site.

I need to show a php page in the fancybox that is called by a click function.

I have no idea how to do it, so I have tried the solution below.

But I always get the error that the page can not be loaded.

I know the code is totally wrong, I hope you can help me.

I just need to show a php page inside the fancybox when the click function is called.

$('#StatusMessage').click(function() {


$.fancybox(
    {
            'autoDimensions'    : false,
        'width'                 : 350,
        'height'                : 'auto',
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'ajax'   : {
    cache   : false,
    url     : "modules/mymodule/开发者_如何转开发index.php"
}
    }
);
});


(Answered by the OP in an edit. See Question with no answers, but issue solved in the comments (or extended in chat) )

The OP wrote:

OK I SOLVED THE ISSUE. THANKS ANYWAY:

$('#StatusMessage').click(function() {
 $.fancybox(
    {
            'autoDimensions'    : false,
        'width'                 : 350,
        'height'                : 'auto',
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'href'          : 'modules/mymodule/index.php'
    }
);
});
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号