angularjs reset input file and filter file

文件上传开发模板

 
<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"


其他可选类型参考百度

你可能感兴趣的:(AngularJS)