Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$('#div').width()返回不带滚动条的 div 的宽度。是否有任何 jquery 或任何其他跨浏览器解决方案可以使用滚动条返回 div 的宽度?`
$('#div').width()
是的,
查看
$('#div').outerWidth(true)
http://api.jquery.com/outerWidth/