var image = new Image();
imagesrc = '地址';
imageonload = function(){
alert(imagewidth);
alert(imageheight);
}
可以通过size属性获取,但是对浏览器兼容性有要求,不兼容IE9以下版本。放个demo:
<!DOCTYPE html><html>
<head>
<script>
function upload() {
var file = documentgetElementById("file")files[0];
alert(filesize);
}
</script>
</head>
<body>
<input type="file" id="file" />
<button id="upload" onclick="upload()">上传</button>
</body>
</html>
以上就是关于js 中,已知图片路径,如何获取图片的长度和宽度,在线等,急全部的内容,包括:js 中,已知图片路径,如何获取图片的长度和宽度,在线等,急、如何通过js获取上传文件尺寸、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)