DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> HTML上傳控件取消選擇
HTML上傳控件取消選擇
編輯:關於JavaScript     

JS代碼
<input type="file" id="fileupload" name="file" /> 

第一種: (display:none時不能用)

復制代碼 代碼如下:
var obj = document.getElementById('fileupload') ;  
obj.select();  
document.execCommand("delete");

第二種:(無論display:none或block都可以用)
復制代碼 代碼如下:
var obj = document.getElementById('fileupload') ;  
obj.outerHTML=obj.outerHTML;

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved