修改上传空间默认文字
时间:2014-12-28 15:39:19
收藏:0
阅读:255
隐藏file空间,使用一个button按钮的onclick事件代替
<form name=formen> <input type="file" name="picpath" id="picpath" style="display:none"
onChange="document.formen.path.value=this.value"> <input name="path" readonly>
<input type="button" value="Browse" onclick="document.formen.picpath.click()">
</form>
原文:http://my.oschina.net/u/946060/blog/361575
评论(0)