<html><body>
清空File控件的內容:<br/>
方法一:(測試成功)
<input type="file" name="File1"/>
<input type="button" onclick="File1.select();document.execCommand(‘Delete‘);" value="清除file的內容"/>
<hr/>
方法二:(測試成功)
<table>
<tr>
<td>
<input type="file" name="attachment"/>
<input name="deleteAtta" type="button" value="清除file的內容" onClick="this.parentElement.innerHTML+=‘‘;"/>
</td>
</tr>
</table>
<hr/>
file控件賦值:
<input type="file" name="File2"/>
<input type="button" onclick="File2.select();document.execCommand(‘Delete‘);" value="清除file的內容"/>
<input type="button" onclick="news()" value="新值"/>
<hr/>
<script>
function news(){
File2.focus();
var WshShell=new ActiveXObject("WScript.Shell");
WshShell.sendKeys("D:\\YingSoft\\YingJAD\\ShellApp.ini");//此文件必須是已經(jīng)存在的
}
</script>
</body></html>
本站僅提供存儲服務(wù),所有內容均由用戶(hù)發(fā)布,如發(fā)現有害或侵權內容,請
點(diǎn)擊舉報。