Jquery 的 ThickBox:使用 GET 参数打开 iframe

发布于 2024-07-25 18:09:33 字数 268 浏览 4 评论 0原文

我尝试了各种组合,如何在thickbox中打开一个包含获取参数的页面? 例如:

<a href="http://www.google.com?q=someQuery&TB_iframe=true&height=600&width=600" title"bla" class="thickbox">example 1</a?

另外,在 Firefox 扩展中使用 Thickbox 时是否需要考虑任何特殊事项?

I tried all sorts of combinations, how can I open a page in thickbox that has get parameters in it? for example:

<a href="http://www.google.com?q=someQuery&TB_iframe=true&height=600&width=600" title"bla" class="thickbox">example 1</a?

Also, are there any special things to consider while working with thickbox in a firefox extension?

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

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

发布评论

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

评论(2

谢绝鈎搭 2024-08-01 18:09:33

顺便说一句,如果您查看文档,附加值应该位于厚盒参数之前,例如

?KeepThis=true&TB_iframe=true&height=400&width=600

BTW if you look at the documentation additional values should be before the thickbox parameters, e.g.

?KeepThis=true&TB_iframe=true&height=400&width=600
笑红尘 2024-08-01 18:09:33

看看thickbox的来源。 一开始的选择器是否与您的链接匹配,例如

tb_init('a.thickbox, area.thickbox, input.thickbox');

以下示例对我来说效果很好:

<a class="thickbox" href="/a/b/c/?id=42&TB_iframe=true&width=800">link</a>

Look at the source of thickbox. Does the selector in the very begining match your links, something like

tb_init('a.thickbox, area.thickbox, input.thickbox');

The following example works fine for me:

<a class="thickbox" href="/a/b/c/?id=42&TB_iframe=true&width=800">link</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文