angular input 为file on-change 无效

2018-06-24 01:49:49来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

l转自:https://blog.csdn.net/klo220/article/details/53331229 侵删

出现这个问题是因为input的type是file,这时如果用ng-change="()"是无效的。

解决方法:用onchange事件。

 html

<input onchange="angular.element(this).scope().add()" type="file">  

 

 js

$scope.add= function () {  

//....

}  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:基于bootstrap的双日历插件 daterangepicker

下一篇:.39-浅析webpack源码之parser.parse