码迷,mamicode.com
首页 > 其他好文 > 详细

小笔记——a标签触发file

时间:2017-10-10 13:15:55      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:cti   margin   type   标签   func   back   提前   href   a标签   

要使用a标签来触发file。

1.我们是有一个要触发的标签,有单击事件。

 

<a href="javascript:void(0)" id="E" onclick="AddPrice()">添加</a>

2.我们要提前隐藏好一个input标签。

 

 <input id="put" type="file" name="put" style="display: none;" />

 3.拿脚本在单击a标签的时候,触发inpu标签。

 

function AddPrice() {
    document.getElementsByName("put")[0].click();

                               }

 

小笔记——a标签触发file

标签:cti   margin   type   标签   func   back   提前   href   a标签   

原文地址:http://www.cnblogs.com/srx121201/p/7644707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!