欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

angularjs reset input file and filter file

程序员文章站 2022-07-02 12:57:51
...

文件上传开发模板

<form id="uploadForm"><input id="fileInput" ng-model="test" type="file" nv-file-select uploader="uploader" accept=".xls,.xlsx" ng-click="onFileSelect()"/></form>

1.在Angularjs里面文件上传对象做清除功能

angular.forEach(angular.element("input[type='file']"),function (inputElem) {angular.element(inputElem).val(null);});

2.设置选择文件限制 只能选择xls或xlsx后缀文件

accept=".xls,.xlsx"

其他可选类型参考百度