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.
经过几次尝试使用width(),我发现所有这些方法outerWidth()都css("width)返回一个计算值(在我的情况下总是与原始值不同),那么如何读取我width在我的 css 中为元素设置的值?
width()
outerWidth()
css("width)
width
试试 外宽
$('#target').outerWidth(true);
填充和边框包含在计算中;如果您通过 true,则还包括边距。