600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > 前台js限制上传图片质量大小和尺寸

前台js限制上传图片质量大小和尺寸

时间:2020-12-09 17:02:02

相关推荐

前台js限制上传图片质量大小和尺寸

CODE: <html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=??????">

<script language="javascript">

<!--

function imgSel()

{

var img = new Image();

img.src = document.p_w_picpathForm.file.value;

document.p_w_picpathForm.width.value = img.width;

document.p_w_picpathForm.height.value = img.height;

document.p_w_picpathForm.size.value = img.fileSize;

document.p_w_picpaths['p_w_picpath'].src = img.src;

}

-->

</script>

</head>

<body>

<form name="p_w_picpathForm">

宽: <input name="width" type="text" size="6"> 高: <input name="height" type="text" size="6"> 大小: <input name="size" type="text" size="6"><br>

<input name="file" type="file" onChange="imgSel()"><br>

<img src="" name="p_w_picpath">

</form>

</body>

</html>

原文链接:/article/sort050/sort055/info-11564.html

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。