带有ng-change的Angularjs滑块

时间:2015-03-13 13:34:08

标签: javascript jquery angularjs

我有像这样的输入滑块

<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)
         };

1 个答案:

答案 0 :(得分:0)

您可以像这样在模型上放置观察者 -

$scope.$watch("value", function(){
    // do whatever you need with the just-changed $scope.value
});