无法使用ng-changeto调用函数

时间:2016-10-09 13:40:39

标签: javascript angularjs

你有一个小功能,在数字的变化,值应该乘以..但现在它不工作.. 有人可以帮助我这很简单吗

标签

 <input type="number" class="form-control text-right" ng-model="totalPremium" ng-change="result()"></input>

控制器

$scope.result = function() => {
return $scope.totalPremium*5;

    };

由于

请查看jsfiddle

1 个答案:

答案 0 :(得分:0)

模块和应用名称未在您的小提琴中设置

设置模块

angular.module('myapp', [])
  .controller('TodoCtrl', TodoCtrl);

设置应用名称

<div ng-app="myapp">

与之前相同的控制器

function TodoCtrl($scope) {
$scope.result = function() {
return $scope.totalPremium*5;

    };    
    };

FIDDLE