jquery从 1.11.**升级到1.12.**后 ,jquery的animate()方法中设置属性height:"auto"失效了,高度自适应出问题了。
例:1.11版本,代码如下ok,但是jq升级到1.12版本,代码就报错了。
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$(".btn1").click(function(){
$("#box").animate({height:"300px"});
});
$(".btn2").click(function(){
$("#box").animate({height:“auto”});
});
});
</script>
</head>
<body>
<div id="box" style="background:#98bf21;height:50px;width:100px;margin:6px;">
</div>
<button class="btn1">Animate</button>
<b