查找表单内任何控件的值是否发生更改

时间:2015-06-30 10:32:06

标签: angularjs

要求 - 我有一个包含多个控件的表单(输入,单选按钮和选择)。现在我需要在textarea控件中动态捕获每个控件的值。

问题 - 当这些控件的值发生变化时,我有什么方法可以触发事件?我知道ng-model或ng-change如何为每个控件单独工作,但我需要在Form级别。

在“script.js”文件中,这不起作用(因为此函数无法动态触发): -

$scope.ProjectTaskSchedules.Description = getSchedularDescription();

    var getSchedularDescription = function()
    {
        if ($scope.ProjectTaskSchedules.SchedulerType.SchedulerTypeName == 'One Time') {
            $scope.ProjectTaskSchedules.Description = 'abc...'
        };
        if ($scope.ProjectTaskSchedules.SchedulerType.SchedulerTypeName == 'Recurring') {
            $scope.ProjectTaskSchedules.Description = 'xyz...'
        };

    };

感谢。

0 个答案:

没有答案