width、naturalWidth 和 clientWidth 之间有什么区别?

What's the difference between width, naturalWidth, and clientWidth?

widthnaturalWidthclientWidth有什么区别?

读这个:

Understanding offsetWidth, clientWidth, scrollWidth and -Height, respectively

示例:<img> 标签

naturalWidth:标签中使用的图片原始宽度

width:标签的width属性的value/default值

clientWidth 表示元素的宽度,受浏览器控制。例如,可以调整 300 像素宽的图像的大小,并且此操纵值将在 clientWidth.

中出现

naturalWidth 是元素的自然宽度。在 300px 宽图像的示例中,即使图像在浏览器中通过 CSS 或 JavaScript.

调整大小,naturalWidth 仍将是 300