标题:[求助]有什么办法当文件格式不对时让文件域的地址清空吗
只看楼主
zfjian
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2006-7-20
 问题点数:0 回复次数:0 
[求助]有什么办法当文件格式不对时让文件域的地址清空吗

<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>
这段代码有这个作用就是上传文件时当选择的文件格式不符合要求时就弹出一个报警框,但是有一个缺点就是文件域的地址不会清空。请问有什么办法当文件格式不对时让文件域的地址清空吗?

搜索更多相关主题的帖子: 文件 地址 办法 格式 
2006-08-20 00:16



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-85076-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.012522 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved