码迷,mamicode.com
首页 > Web开发 > 详细

js模拟弹框选择文件夹

时间:2018-01-03 19:38:37      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:body   file   app   set   hidden   attr   document   style   fun   


                var inputObj = document.createElement(‘input‘);
                inputObj.setAttribute(‘id‘, ‘_ef‘);
                inputObj.setAttribute(‘type‘, ‘file‘);
                inputObj.setAttribute("style", ‘visibility:hidden‘);
                document.body.appendChild(inputObj);
                inputObj.click();
                //选择
                $(inputObj).change(function () {

                }

 


 

js模拟弹框选择文件夹

标签:body   file   app   set   hidden   attr   document   style   fun   

原文地址:https://www.cnblogs.com/cxyzhangjie/p/8185015.html

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