将 jQuery UI 对话框粘贴到窗口一侧
有没有一种简单的方法可以将 jQuery UI 对话框“粘”到浏览器窗口的一侧,以便在调整窗口大小时,对话框仍然卡住?
Is there a simple way to "stick" a jQuery UI dialog to the side of the browser window so on window resize, the dialog remains stuck?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要设置相对位置(例如 50%),您可以使用如下内容:
您可以将类似的代码放入页面的 onLoad 或 onReady 函数中。
有关详细信息,请查看有关 .resize() 的 jQuery 文档和一般事件处理程序。
To set the relative location (say, 50%), you'd use something like this:
You'd drop code like that into the onLoad or onReady functions of your page.
For more info, check out the jQuery Documentation on .resize() and event handlers in general.