新微赢技术网

标题: [求助]有什么办法当文件格式不对时让文件域的地址清空吗 [打印本页]

作者: isly‖    时间: 2010-1-17 09:03
标题: [求助]有什么办法当文件格式不对时让文件域的地址清空吗
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script>
function yulan()
{
var fileext=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="<img src='"+document.form1.UpFile.value+"' width=120 style='border:6px double #ccc'>"
}

}
</script>
</head>
<body>
<form name="form1" method="POST" enctype="multipart/form-data">
<input type="file" name="UpFile" size="46" onchange="yulan()">
<div id="preview"></div>
</form>
</body>
</html>
这段代码有这个作用就是上传文件时当选择的文件格式不符合要求时就弹出一个报警框,但是有一个缺点就是文件域的地址不会清空。请问有什么办法当文件格式不对时让文件域的地址清空吗?




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2