概述
input:file本身自帶的樣式不太好看,但是又沒法設置樣式。
由於系統限制,不能通過代碼觸發,只允許用戶自主點擊。
通常的解決辦法是,把input:file透明化,實際上點擊的還是input:file。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<input type="file" id="demo">
<hr>
<h5 onclick="document.querySelector('#demo').click()")>
<br>
p.s:即使input:file隱藏了也能。</h5>
</body>
</html>
