jQuery UI 对话框上的不同背景
我需要为某些对话框制作 3 种不同的背景。 首先,我不想要对话框上的“通用”标题,我将其删除。
我想使用一个简单的背景图像而不是 jquery css 提出的 css。 尽管如此,我使用了 jquery css 并将背景图像添加到 .ui-dialog 中。 如何使用 js 更改“iu-dialog”上的背景图像?
I need to make 3 different backgrounds for some dialog box.
First, i don't want the "common" title on the dialog box, i removed it.
i want to use a simple background-image instead of the css proposed by the jquery css.
Nonetheless, i used the jquery css and added background-image to .ui-dialog.
how do i change the background-image on the 'iu-dialog' with js?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想要一系列外观相同的对话框,您可以手动或使用 jQuery 添加一个类:
然后将背景图像放入 css 中,使其变得重要吗?
You could add a class to it, either manually or using jQuery in case you wanted to have a series of the same-looking dialogs:
Then throw the background-image into the css, make it important?
如果您想通过 JavaScript/jQuery 更改背景图像,可以使用:
$('.ui-dialog').css('background-image', 'some/image.png').
有关 .css() 的更多信息
If you want to change the background-image via JavaScript/jQuery you can do it with:
$('.ui-dialog').css('background-image', 'some/image.png')
.More information about .css()