javascript实现上传图片前的预览(TX的面试题)
发布时间:2016-12-30 来源:查字典编辑
摘要:以前不知道file控件也能使用onchange,导致面试时失去良机。functionyulan(){varfileext=document....
以前不知道file控件也能使用onchange,导致面试时失去良机。
<script>
functionyulan()
{
varfileext=document.form1.UpFile.value.substring(document.form1.UpFile.value.lastIndexOf("."),document.form1.UpFile.value.length)
fileext=fileext.toLowerCase()
if((fileext!='.jpg')&&(fileext!='.gif')&&(fileext!='.jpeg')&&(fileext!='.png')&&(fileext!='.bmp'))
{
alert("对不起,系统仅支持标准格式的照片,请您调整格式后重新上传,谢谢!");
document.form1.UpFile.focus();
}
else
{
//alert(''+document.form1.UpFile.value)//把这里改成预览图片的语句
document.getElementById("preview").innerHTML="<imgsrc='"+document.form1.UpFile.value+"'width=120>"
}
}
</script>
<formname="form1"method="POST"enctype="multipart/form-data">
<inputtype="file"name="UpFile"size="46"onchange="yulan()">
<divid="preview"></div>
</form>