復制代碼 代碼如下:
<body>
<input type=file id="j" onchange="getValue();" style="-moz-opacity:0;filter:alpha(opacity=0);opacity:0;position:absolute;left:166px;" />
<input id="ye" style="color: green;border: 1px solid green;width:300px;" />
<input type="button" value="File" style="border: 1px solid green;width:80px;" />
</body>
<script language="javascript">
function getValue(){
document.getElementById('ye').value = document.getElementById('j').value;
}
</script>
思路:
1、把頑固的文件域就是<input type=file /> 透明化:style="-moz-opacity:0;filter:alpha(opacity=0);opacity:0;"
2、用一個文本框和按鈕代替文件與的外觀
3、將文件域的浏覽按鈕放到我們寫的按鈕的上方
4、用js得到文件域value改變時的值即:得到的文件路徑,並賦給文本框的value,這樣就ok了
我只是試驗,樣式很簡陋;其實可以進一步美化;
這樣的好處:只是模擬了file文件域的外觀,其實起作用的還是文件域file,這樣就很方便。