早上好: 我有一些表格,并希望使用ui活动主题的背景颜色。我发现很多情况下要替换属性背景,但没有找到背景颜色。
我想提出类似的内容:
<div class='ui-button-background---or-whatever-it-is' ...>
<span class='ui-button-color----or-whatever-it-is' ...>
Sample title with color & background colors of the jqueryui button
</span>
</div>
并使用按钮背景颜色设置div背景
答案 0 :(得分:0)
不完全清楚你在问什么,但我认为这可能就是你要找的东西。
尝试使用获取背景颜色:
$('.ui-button-background').css('background-color');
设置背景颜色(或任何其他css属性)只添加第二个参数:
$('.ui-button-background').css('background-color', 'red');
答案 1 :(得分:0)
<强> HTML 强>
<div class='ui-button-background div1'>
<span class='ui-button-color div2'>
Sample title with color & background colors of the jqueryui button
<input class="button" type="button" style="background-color:red;"/>
</span>
</div>
JS
var backgrnd = $(".button").css("background-color");
$(".div1").css("background-color",backgrnd );
$(".div2").css("background-color",backgrnd );