我在.css
文件中设置了min-height值。现在我想在20 px
点击按钮时增加div的高度。
以下是我的css:
.wizard > .content{
min-height:300px;
}
现在,每当我点击一个名为"increment"
的按钮时,课程内容的min-height
应增加20px
。
<div class="wizard">
<div class="content">
</div>
<div class="action">
<button id="myButton" type="button">Increment</button>
</div>
</div>
答案 0 :(得分:1)
你可以这样:
$('#myButton').click(function(){
$('.wizard .content').css({ 'min-height' : '+=20px' });
});
答案 1 :(得分:0)
使用height()
获取当前身高,然后使用css()
来应用身高
试试这个
$('#myButton').click(function(){
var lastwidth=$('.content').height();
var final=lastwidth+20
$('.content').css('min-height',final+'px')
});
答案 2 :(得分:0)
你可以通过在Jquery
中使用.css属性来实现这一目的$('#myButton').on("click",function(){
var height=$('.content').height();
var newheight = height+20;
$('.content').css('min-height',newheight+'px')
});
答案 3 :(得分:0)
$( "button" ).on( "click", function() {
$(".content" ).css( "height", "+=200" );
});
答案 4 :(得分:0)
要匹配问题中的精确规格:
$( '#myButton' ).on( 'click', function() {
var contentEl = $( '.wizard > .content' );
var currentValue = parseInt( contentEl.css( 'min-height' ) );
contentEl.css({
'min-height': currentValue + 20 + 'px'
});
});