如何在不影响datetimepicker的情况下删除jquery选项卡的背景?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这:
应该是:
This:
Should be: