jQuery UI 对话框上的不同背景

发布于 2024-12-23 03:57:56 字数 171 浏览 2 评论 0原文

我需要为某些对话框制作 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 技术交流群。

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

发布评论

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

评论(2

梦亿 2024-12-30 03:57:56

如果您想要一系列外观相同的对话框,您可以手动或使用 jQuery 添加一个类:

$('.selector').addClass("dialog_alt");

然后将背景图像放入 css 中,使其变得重要吗?

.dialog_alt{
    background-image: url(image.png) !important;
}

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:

$('.selector').addClass("dialog_alt");

Then throw the background-image into the css, make it important?

.dialog_alt{
    background-image: url(image.png) !important;
}
烟花易冷人易散 2024-12-30 03:57:56

如果您想通过 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()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文