js实现上传文件扩展名小写转换
时间:2007-02-17 来源:PHP爱好者
<form name=form>
<input name=jts value="" size=10>
<input type="file" name=upf onchange="ty()";>
</form>
<script>
function ty(){
var srcc = document.form.upf.value;
srcc = srcc.toString()
start = srcc.indexOf(".");
end = srcc.length;
ts=srcc.substring(start+1,end);
//swordmaple javascript article.
//from www.jx165.com
nts=ts.toLowerCase();
document.form.jts.value=nts;
alert("你选择的文件类型是"+document.form.jts.value+"!");
}
</script>
php爱好者站 http://www.phpfans.net 为phper提供一切资讯.
<input name=jts value="" size=10>
<input type="file" name=upf onchange="ty()";>
</form>
<script>
function ty(){
var srcc = document.form.upf.value;
srcc = srcc.toString()
start = srcc.indexOf(".");
end = srcc.length;
ts=srcc.substring(start+1,end);
//swordmaple javascript article.
//from www.jx165.com
nts=ts.toLowerCase();
document.form.jts.value=nts;
alert("你选择的文件类型是"+document.form.jts.value+"!");
}
</script>
php爱好者站 http://www.phpfans.net 为phper提供一切资讯.
相关阅读 更多 +