轉自:https://www.jb51.net/article/100916.htm
1.詳細描述
在頁面上設置一個“選擇文件”按鈕,點擊該按鈕,會彈出本地磁盤信息用於選擇文件。
2.代碼
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<
html
>
<
head
>
<
meta
charset
=
"utf-8"
>
<
title
>Demo</
title
>
<
script
type
=
"text/javascript"
>
function F_Open_dialog()
{
document.getElementById("btn_file").click();
}
</
script
>
</
head
>
<
body
>
<
div
>
<
input
type
=
"file"
id
=
"btn_file"
style
=
"display:none"
>
<
button
type
=
"button"
onclick
=
"F_Open_dialog()"
>選擇文件</
button
>
</
div
>
</
body
>
</
html
>
|
3.操作示例
將代碼復制到W3CSchool的測試頁面,提交運行之后如圖:在查看結果頁面會出現“選擇文件”這個按鈕
之后點擊“選擇文件”后如圖:頁面上會出現彈窗,顯示本地磁盤信息,用於選擇文件。


