JavaScript - 获取真实图像宽度和宽度的函数 高度(跨浏览器)
如何获取真实图像宽度& 高度(跨浏览器)通过 JavaScript 函数?
How to get real image width & height (cross browser) by JavaScript function ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
首先,如果您以更礼貌的方式提出问题并提供尽可能多的相关信息,那么您的问题得到解答的机会就更大。
无论如何...
据我所知,您可以在几乎所有浏览器中使用
.width
属性:First of all, you have a greater chance of getting your question answered if you'd just ask it in a more polite way, and supplying as much relevant information as possible.
Anyway...
For as far as I know, you can use the
.width
property across pretty much all browsers:耶,Google!
有几种方法可以做到这一点,具体取决于您所需要的内容(您无助地忽略了这些内容)。 一般意义上最简单的方法可能是获取对 Image 对象的引用并检查
width
和height
属性。Yay, Google!
There's a few ways to do this depending on exactly what you need (which you have unhelpfully omitted to include). Probably the simplest in a general sense is to get a reference to the Image object and inspect the
width
andheight
properties.jquery +
+
$("#hello").width()
jquery +
<img src="" ... id="hello" />
+$("#hello").width()