动态更改厚盒弹出窗口大小
我正在使用 ThickBox 在我的页面中打开弹出窗口。在弹出窗口中,有一个单击选项卡,我需要更改 ThickBox 弹出窗口的大小。我怎样才能做到这一点?
提前致谢。
I'm using ThickBox to open popup in my page. In popup there is a tab on click on which i need to change the size of ThickBox popup window. How can i do that ?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是他们使用的代码,
因此您可以稍作更改即可使用相同的代码(假设您使用现代版本的 jQuery)。
演示位于 http://jsfiddle.net/gaby/rrH8q/
This is the code they use
so you can use the same with a slight change (assuming you use a modern version of jQuery)..
Demo at http://jsfiddle.net/gaby/rrH8q/
对 Gaby aka G. Petrioli 的回答进行了一些修正,以便弹出窗口也应该正确设置边距:
A little correction in Gaby aka G. Petrioli's answer so that popup should set the margins also correctly :
将单击事件处理程序附加到所述选项卡,以更改 TB_Window 尺寸和边距以使其再次居中,例如
Attach a click event handler to said tab that changes the TB_Window dimensions and margins to center it again, e.g.
我做了这样的事情。
如果在弹出窗口打开时调整视图端口的大小,则需要重新启动。
I did something like this.
This needs to be re-launched if the wiewport is resized while the popup is open.
您必须将其包含在 setTimeout 中,以便在打开厚盒后完成此操作,而不是在单击按钮时完成。通常,它发生在“单击按钮”和“打开厚盒”之间。
You have to enclose this inside a setTimeout so that this will be done after the thickbox is opened, not when the button is click. Usually, it happens in between of "Clicking of button" and "opening of thickbox".