本文实例讲述了js兼容火狐获取图片宽和高的方法。分享给大家供大家参考。具体实现方法如下:
<!doctype html> <html> <head> <meta content="text/html; charset=GBK" http-equiv="Content-Type" /> <title>获取Image 宽高</title> </head> <body> <script> function newimage(obj) { a = new Image(); var objectURL = window.URL.createObjectURL(obj.files[0]); var img= document.getElementById('img') img.src = objectURL; a.src = objectURL; img.onload=function (){ alert(img.width); alert(img.height); } } </script> <input id="idcardfile" type="file" name="idcardfile" onchange="newimage(this)"/> <img id="img" style="display: none;"> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索js
, 宽高
, 获取图片
兼容火狐
火狐禁用javascript、火狐javascript设置、火狐启用javascript、火狐javascript、火狐浏览器javascript,以便于您获取更多的相关知识。
时间: 2024-10-28 00:43:03