我尝试更改jQuery UI创建的类的值,但我不能。 谢谢告诉我如何做到这一点。
HTML
<div id="barre" class="ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all" style="width: 960px; height: 540px;">
<span class="ui-slider-handle ui-state-default ui-corner-all" tabindex="0" style="left: 48.9583%;"></span>
</div>
的jQuery
$(".ui-slider-handle").css("height", "100px"); // doesn't modify the value
答案 0 :(得分:0)
在脚本之前添加$
:
$(".ui-slider-handle").css("height", "100px");
答案 1 :(得分:0)
你的jQuery工作正常。 你必须先添加span标签样式
.ui-slider-handle{
dispaly:block
}
或
在脚本之前添加$:
$(".ui-slider-handle").css("display", "block");
$(".ui-slider-handle").css("height", "100px");