gpt4 book ai didi

javascript - 带有 ng-change 的 Angularjs slider

转载 作者:行者123 更新时间:2023-11-28 07:31:56 25 4
gpt4 key购买 nike

我有这样的输入 slider

<input ng-model="value" type="text" id="mySlider1" slider ng-change="fun()"/>

此 slider 的值从 1 到 10

我需要通过 ng-model 获取这个值并使用 angularjs Controller 执行 fun()当改变 slider 时。

AngularJS Controller

$scope.fun = function () {
console.log($scope.value)
};

最佳答案

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

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

关于javascript - 带有 ng-change 的 Angularjs slider ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29033594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com