File控件文本框的传值和清空
<html><body>
清空File控件的内容:<br/>
方法一:(测试成功)
<input type="file" name="File1"/>
<input type="button" onclick="File1.select();Command(‘Delete‘);" value="清除file的内容"/>
<hr/>
方法二:(测试成功)
<table>
<tr>
<td>
<input type="file" name="attachment"/>
html内容文本框<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();Command(‘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");//此文件必须是已经存在的
}
</script>
</body></html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论