我有一个 div 标签:
<div id="tier1" class="tier1" >
<a href="#" class="view">View All</a>
</div>
.tier1 {
border-bottom: 1px solid #cccccc;
min-height: initial;
max-height: 245px;
padding: 0 0 8px;
}
max-height
我想在我点击时扩展这个 div"View All"
我正在使用这个脚本:
<script>
$(document).ready(function () {
$('.view').click(function () {
$('#tier1').animate(function () {
height : 510 ;
}, 1000);
});
});
</script>
但这会扩展到只有 max-height 。我什至尝试在脚本中设置 maxHeight 属性但是脚本根本不起作用。