gpt4 book ai didi

angularjs - 触发除按键或按键之外的文本框的 ng-change 事件

转载 作者:行者123 更新时间:2023-12-03 06:53:30 25 4
gpt4 key购买 nike

我想在使用某种方法更改值时更新文本值,当我仍在输入文本时但从文本框退出或通过脚本代码更改它时,不应调用该方法:

<input type="text" ng-model ="model.value" ng-change = "update()"/>

什么应该包含 update() 方法,

我尝试的是:为此文本框编写一个指令,并且

scope.$watch('model', function(nval,oval){
if ((oVal === undefined) && (nVal != undefined)){
update()
}
});

它是第一次调用,但不是在模型值更改时调用。

我想在 model.value 发生变化时调用更新方法,但不是在输入文本时调用

最佳答案

您可以使用ng-blur并且您应该更改您的$watch:

JSFiddle

HTML:

<div ng-app="myApp" ng-controller="dummy">
<input type="text" ng-model="model.value" ng-blur="update()"/>
</div>

JS:

angular.module('myApp', [])
.controller('dummy', ['$scope', function ($scope) {
$scope.model = {
value: 'hello'
};
$scope.update = function () {
console.log("changed!");
};
$scope.$watch('model.value', function (nval, oval) {
if (oval !== nval) {
$scope.update();
}
});
}]);

关于angularjs - 触发除按键或按键之外的文本框的 ng-change 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31647931/

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