概述
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>