使用 javascript 调用 Thickbox

发布于 2024-10-05 12:14:57 字数 204 浏览 4 评论 0原文

如何使用 JavaScript 函数调用厚盒。我正在使用这段代码。

//javascript function
function click_fn()
{
 self.location="upload.php?keepThis=true&TB_iframe=1&width=1000&height=400&model=true";
}

How to invoke a thickbox using javascript function. I am using this code.

//javascript function
function click_fn()
{
 self.location="upload.php?keepThis=true&TB_iframe=1&width=1000&height=400&model=true";
}

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

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

发布评论

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

评论(2

左岸枫 2024-10-12 12:14:57

通过 JavaScript 调用 Thickbox

var url = "http://www.blah.com/something?KeepThis=true&TB_iframe=true&width=300&height=200";
tb_show("My Caption", url);

语法:
tb_show(caption, url, imageGroup)

代码允许从javascript调用thickbox。

Calling Thickbox via JavaScript

var url = "http://www.blah.com/something?KeepThis=true&TB_iframe=true&width=300&height=200";
tb_show("My Caption", url);

Syntax:
tb_show(caption, url, imageGroup)

Code allows to call thickbox from javascript.

浸婚纱 2024-10-12 12:14:57

您也可以使用内联 html 触发 tb_show:

tb_show("Modal title", "#TB_inline?inlineId=modal_container");

使用文本时,请确保将它们保留在 p 标记中。
复选框标签文本必须是有效的 HTML(带有标签),否则标签会被删除。

<div id="modal_container" style="display:none;">
    <p>
        Example Text
    </p>     
    <input type="checkbox" name="checkbox_name" id="checkbox_name" value="value">
    <label for="checkbox_name">Example Label</label>
</div>

You can trigger tb_show with inline html as well:

tb_show("Modal title", "#TB_inline?inlineId=modal_container");

When using text be ensure to keep them in p tags.
Checkbox label text have to be valid HTML (with label for) otherwise the label gets striped out.

<div id="modal_container" style="display:none;">
    <p>
        Example Text
    </p>     
    <input type="checkbox" name="checkbox_name" id="checkbox_name" value="value">
    <label for="checkbox_name">Example Label</label>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文