使用带角度材料的输入类型文件2
发布时间:2020-12-17 08:51:36 所属栏目:安全 来源:网络整理
导读:如何使用角度材料2 FAB按钮打开浏览输入对话框?这可以通过这种方式在 HTML中完成. button type="button" label for="file-input"click/label/buttoninput type="file" id="file-input" style="display:none" 我尝试使用与材料2相同的方法,但它不起作用. but
如何使用角度材料2 FAB按钮打开浏览输入对话框?这可以通过这种方式在
HTML中完成.
<button type="button"> <label for="file-input">click</label> </button> <input type="file" id="file-input" style="display:none"> 我尝试使用与材料2相同的方法,但它不起作用. <button md-mini-fab type="button"> <label for="fileToUpload"> <md-icon>add</md-icon> </label> </button> <input id="fileToUpload" type="file" style="display:none;"> 还有其他方法可行吗?谢谢.
您只需触发文件输入的单击即可.
<button md-mini-fab type="button" onclick="document.getElementById('fileToUpload').click()"> <label for="fileToUpload"><md-icon>add</md-icon></label> </button> <input id="fileToUpload" type="file" style="display:none;"> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |