1
Paranoid 2010-12-02 20:16:27 +08:00
|
2
est 2010-12-02 20:17:24 +08:00
F...F...Flash........
|
3
Paranoid 2010-12-02 20:19:41 +08:00
还有这个一个:
http://www.converthub.com/ |
4
darasion OP 囧。感觉都太费劲了。
|
5
disinfeqt 2010-12-02 21:26:28 +08:00
<input type="file" style="opacity: 0;" />
|
6
vini123 2018-01-03 15:51:49 +08:00
在 input 上边建立一个 label 标签,label 标签中定义一个 for 属性,for 属性的内容就是 input 的 id。当点击 label 标签的时候,就等于点击了 input。既然这样,只要 css 去实现 label,就 ok 了。
比如: ``` <label for="file" style="display:inline-block;width:100px; height:30px;line-height:30px;color:#fff; background-color:#666; border-radius: 5px;text-align:center;l">上传图片</label> <input type="file" id="file" style="position:absolute;clip:rect(0 0 0 0);"> ``` |