如何使 jQuery 弹出窗口比默认更宽?
我正在这个测试页面上工作: http://www.problemio.com/test.php
如果单击登录链接,您可以看到它看起来漂亮整洁,并且适合默认宽度。
但是,如果您单击“创建配置文件”链接,您会发现弹出窗口太窄,无法容纳所有表单字段和文本。
我尝试通过为包含的 div 提供一些样式来使其更宽,如下所示,但这只会使 div 更宽,但不会使打开的弹出窗口更宽。
如何控制 jQuery 弹出窗口的样式和宽度/高度?谢谢!
I am working on this test page: http://www.problemio.com/test.php
If you click the login link, you can see that it looks nice and neat and fits into the default width.
But if you click on the create-profile link you can see that the popup is too narrow to fit all the form fields and text.
I tried making it wider by giving some style to the containing div like this but that only made the div wider, but not the popup that opens.
How can I control the styling and the width/height of the popup made by jQuery? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在参数中指定高度和宽度。
查看选项。
You can specify the height and width in the arguments.
Take a look at the options.
您甚至可以通过转到“jqueryui.css”来更改默认宽度
并更改
.ui-dialog
的 width 属性,这样每次弹出对话框时都会减少 js 代码
you can even change the default width by going to "jqueryui.css"
and change the width property of
.ui-dialog
that's less js code everytime you pop a dialog