厚盒 JavaScript 函数

发布于 2024-11-17 10:42:21 字数 268 浏览 3 评论 0原文

我的网站使用厚盒,目前调用它的唯一方法是单击链接。有没有办法制作一个调用厚盒窗口的javascript函数?

Thickbox网站: http://jquery.com/demo/thickbox/

我知道thickbox是jquery ,但我不太确定 jquery 函数与 javascript 函数有何不同,因为我相信 jquery 是 javascript?

My site uses thickbox and as of now the only way to call it is by clicking on a link. Is there anyway to make a javascript function that calls a thickbox window?

Thickbox website: http://jquery.com/demo/thickbox/

I am aware that thickbox is jquery, but im not really sure how jquery functions are different from javascript functions because I belive jquery is javascript?

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

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

发布评论

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

评论(1

不念旧人 2024-11-24 10:42:21

如果您想打开绑定到thickbox的链接/图像,只需调用

$('#my-link').click();

对于所有其他情况,调用 tb_show 函数

tb_show('Custom title', 'http://jquery.com/demo/thickbox/images/single.jpg')

您还可以传递第三个参数,该参数将查找组中的所有图片

tb_show('Custom title', 'http://jquery.com/demo/thickbox/images/plant1.jpg', 'gallery-plants')

If you want to open a link/image that is bound to thickbox, just call

$('#my-link').click();

For all other cases, call the tb_show function

tb_show('Custom title', 'http://jquery.com/demo/thickbox/images/single.jpg')

You can also pass a third argument that will find all pictures from a group

tb_show('Custom title', 'http://jquery.com/demo/thickbox/images/plant1.jpg', 'gallery-plants')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文