在上一个问题中,当你想要重定向时,有人建议在链接顶部构建一个jQuery按钮:
<a href="/search" class="button">My link</>
$(".button").button();
但如果上面的button
类定义了红色的前景色,那么该颜色也会显示为按钮的前景色。
a.button {color: red;}
如何让jQuery UI使用自己的配色方案,而不是为主样式表中的链接定义的颜色样式?
答案 0 :(得分:0)
答案 1 :(得分:0)
您可以尝试在jQuery css文件中将jQuery UI按钮的Color属性设置为“!important”。这将使它优先于“按钮”类。
在我的情况下,我必须设置以下
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
//some other style properties ere
color: red !important;
}