我需要一个插件来垂直调整DIV,只需使用jQuery(而不是jq UI)。这是HTML的一个示例:
<div class="wrapper" style="width:300px; height:300px; padding:50px; border:1px solid black;">
<div class="resizable" style="height:300px; width:150px; background:green;float:left">
TEST TEST
</div>
<div class="handle" style="width:10px; height:60px; float:left; margin-top:120px; background:red;"> </div>
</div>
谢谢。
答案 0 :(得分:1)
jQuery('.resizable').css({
'height': '150px'
})
如果你问得好,现在会有更多人回答。
答案 1 :(得分:0)
查看内置的height()函数:
$(function ()
{
$(".resizable").height(300); // .resizable to 300px in height
});