如何在不影响datetimepicker的情况下删除jquery选项卡的背景?

发布于 2024-10-30 04:28:39 字数 270 浏览 0 评论 0原文

我的 asp.net mvc2 网页中有一个 jquery 选项卡,它有一个背景(选项卡内容背景),我需要将其设置为白色。这就是我输入的内容:

$(function() {
    $("#tabs").tabs();
$(".ui-widget-content").css("background", "none");
});

但是,这使我的日期时间选择器也成为背景:无。

我只想对选项卡内容背景执行此操作。任何想法。

谢谢

I have a jquery tab in my asp.net mvc2 web page, and it has a background(tab content background) that I need to make white. So this is what I typed:

$(function() {
    $("#tabs").tabs();
$(".ui-widget-content").css("background", "none");
});

But, this makes my datetime picker also background: none.

I want to do this for the tab content background only. Any ideas.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

少年亿悲伤 2024-11-06 04:28:39

这:

$(".ui-widget-content").css("background", "none");

应该是:

$(".ui-tabs-panel").css("background", "none");

This:

$(".ui-widget-content").css("background", "none");

Should be:

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