以下是一段多文件上传的代码!我对脚本不熟,这是贴来的代码!
现在要求页面加载时先显示一个file控件。最多只显示6个file控件。(6个之内由用户自己控制个数)
该怎么修改代码啊!哪位帮帮忙啊!
<script language="javascript">
function appendFile(filePanel,addLink)
{
var objs="<div><input type='file' name='mutiupfile_file' style='width:90%' onkeypress='window.event.returnValue=false;'> <input type='button' name='mutiupfile_button' value='删除' onclick='javascript:removeFile(this)'></div>";
filePanel.insertAdjacentHTML('beforeEnd',objs);
addLink.innerText="继续添加附件";
}
function removeFile(fileToDel)
{
var divToDel = fileToDel.parentNode;
document.all["filePanel"].removeChild(divToDel);
if(document.all["filePanel"].children.length<=0)
{document.all["addLink"].innerText="添加附件";}
}
function CheckFile()
{
var objs=document.getElementsByTagName("input");
for(i=0;i<objs.length;i++)
{
if(objs[i].type=="file")
{
if(objs[i].value=="")
{alert("请选择文件!");return false;}
}
}
return true;
}
</script>
<tr>
<td id="filePanel" width="450" height="30">
<A id="addLink" onclick="javascript:appendFile(filePanel,this)" href="#">添加附件</A>
</td>
</tr>