以下代码是我编写的函数的一部分,但不知何故感觉是多余的。谁能告诉我如何正确处理以下问题:
openProject: function() {
if( $(a).height() == $(b).height() ){
$( myID )
.css({ opacity: 0 })
.show()
.stop(true, true)
.animate({ opacity: 1}, 750);
}else{ /* end $(a).height() == $(b).height() */
$( a ).stop(true, true).animate({ height : $( b ).height() }, 750, function(){
$( myID )
.css({ opacity: 0 })
.show()
.stop(true, true)
.animate({ opacity: 1}, 750);
});
} /* end if:else */
}
两个部分之间的唯一区别是是否$( a )
动画。
任何帮助将不胜感激!
谢谢, 纳尔