是否可以使用 animate() 动态增加 div 的宽度并将其显示在变量中?
我已经尝试了几件事,但变量仍然显示 div 的原始宽度(至极为零)所以它没有被更新。
HTML
<a href="#" id="button2">Add width</a>
<div id='content'></div>
<div id="msg"></div>
jQuery
$('#button2').click(function () {
$('#content').animate({
width: '+=40'
}, 500);
});
var width = $('#content').width();
$("#msg").html(width);
所以我想知道我怎么能做到这一点。我应该为变量编写一个更新函数还是有更简单的方法?