我有像这样的输入滑块
<input ng-model="value" type="text" id="mySlider1" slider ng-change="fun()"/>
此滑块的值为1到10
我需要通过ng-model获取此值并使用angularjs控制器执行fun() 何时更改滑块。
angularjs控制器
$scope.fun = function () {
console.log($scope.value)
};
答案 0 :(得分:0)
您可以像这样在模型上放置观察者 -
$scope.$watch("value", function(){
// do whatever you need with the just-changed $scope.value
});