我目前正在使用 jQuery 动画来调整横幅的大小。有一个 div 按钮可以在单击时执行此操作。我想要做的是让按钮将其文本从“隐藏横幅”更改为“显示横幅”,具体取决于
<div id="banner_animate" class="banner">
<div id="minimize" class="small_button">hide banner</div>
<script>
$("#minimize").click(function() {
var new_height = 200;
if ($("#banner_animate").height() == 200) new_height = 40;
$("#banner_animate").animate({
height: new_height + "px"
}, 500 );
});
$(function() {
$( document ).tooltip();
});
</script>
我对 jQuery 很陌生,所以任何帮助将不胜感激!