jQuery fancybox 帖子

发布于 2024-11-03 23:06:47 字数 744 浏览 0 评论 0原文

我有一个 jQuery fancybox,它从 iframe 中获取内容,这里是弹出该框的链接:

<a class="action_btn recommend_btn" act="recommend" href="recommend.php">Recommend</a>

这是 fancybox 的代码:

$(".action_btn").not(".save").click(function() {
    $.fancybox({
        'width' : 560,
        'height' : 530,
        'autoScale' : false,
        'transitionIn' : 'none',
        'transitionOut' : 'none',
        'type' : 'iframe',
        'href' : $(this).attr('href')
    });

    return false;
});

现在我想将一些内容发布到这个Recommended.php,所以我可以使用这个属性/值在recommend.php中,我该怎么做?

我能想到的一种方法是在超链接之前在页面中存储会话,但似乎不正确..似乎应该有更好的方法来做到这一点

I have a jQuery fancybox that takes the content from an iframe, here's the link to popup the box:

<a class="action_btn recommend_btn" act="recommend" href="recommend.php">Recommend</a>

and here's the code for the fancybox:

$(".action_btn").not(".save").click(function() {
    $.fancybox({
        'width' : 560,
        'height' : 530,
        'autoScale' : false,
        'transitionIn' : 'none',
        'transitionOut' : 'none',
        'type' : 'iframe',
        'href' : $(this).attr('href')
    });

    return false;
});

now I would like to post something to this recommend.php, so I can use this attribute/value in recommend.php, how can I do this?

One way I can think of is to store a session in the page prior to hyperlinking, but doesn't seem right.. seems like there should be a better way to do this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末 2024-11-10 23:06:47

您应该仍然能够使用 _GET http 变量,我认为是这样:

<a href="recommend.php?some_variable=value">Click</a>

然后在recommend.php 中使用$_GET['some_variable']。除非 fancybox 用 iFrame 做了一些疯狂的事情。

You should still be able to use the _GET http variable I think so:

<a href="recommend.php?some_variable=value">Click</a>

Then in recommend.php use $_GET['some_variable']. Unless fancybox does something crazy with iFrames.

烟燃烟灭 2024-11-10 23:06:47

因为您已经在使用 jQuery 并且可能想使用 .post() 即时执行此操作。

$(".action_btn").not(".save").click(function() {
    $.fancybox({
        'width' : 560,
        'height' : 530,
        'autoScale' : false,
        'transitionIn' : 'none',
        'transitionOut' : 'none',
        'type' : 'iframe',
        'href' : $(this).attr('href')
    });


    // example uses a json object to pass data, change here to what you need.
    // will also accept jQuery objects like so:
    // $.post('recommend.php', $('#myData').serialize());    

    $.post('recommend.php', { name: 'John', time: '2pm' } );


    return false;
});

since you already are using jQuery and possibly want to do this on the fly use .post().

$(".action_btn").not(".save").click(function() {
    $.fancybox({
        'width' : 560,
        'height' : 530,
        'autoScale' : false,
        'transitionIn' : 'none',
        'transitionOut' : 'none',
        'type' : 'iframe',
        'href' : $(this).attr('href')
    });


    // example uses a json object to pass data, change here to what you need.
    // will also accept jQuery objects like so:
    // $.post('recommend.php', $('#myData').serialize());    

    $.post('recommend.php', { name: 'John', time: '2pm' } );


    return false;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文