用css alpha 濾鏡 實現input file 樣式美化代碼

來源:互聯網
上載者:User

在WEB上傳檔案時,要用到上傳框:
<input type="file" id="f" name="f">
這東東在IE(其他偶沒經過測試)中是一個非常特殊的對象。 如果是您手動寫入的或其他對象經過某些事件觸發填入的值 ,由於安全問題,在進行提交表單時,往往會被清空,所以上傳失敗。 簡單點說,除非你的滑鼠親自點到了上傳框f上,IE才會給你上傳檔案!

哪怕你將 f 的onclick控制代碼賦給某個對象,如:
<input type="file" id="f" name="f">
<input onclick="f.click()" value="點擊">
你 “點擊” 後,同樣會彈出檔案選擇對話方塊,可惜失望地:你照樣不能上傳檔案! 怎麼辦呢? 看下這段:
<BODY onmousemove="f.style.pixelLeft=event.x-200;f.style.pixelTop=event.y-10;">
<input type="text"><input type="button" onmousemove="">
<input type="file" id="f" name="f" style="position:absolute;">
</BODY>
隨便點擊滑鼠,看到效果了吧? 基於上面的思路,偶們就可以把它弄到一個button下面就OK了!!

<br /><style> input{border:1px solid green;} </style><p>
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.