I have this HTML

<li ng-click="toggleCheckbox('LandDTO.Car.Motor')">
<li ng-click="toggleCheckbox('LandDTO.Car.Motor2')">

and here is my function

$scope.toggleCheckbox = function (model) {
$scope[model] = true; 
};

Its not working, what am I doing wrong?

有帮助吗?

解决方案

change <li ng-click="toggleCheckbox('LandDTO.Car.Motor')"> to <li ng-click="toggleCheckbox('Motor')">

and in function change it to

$scope.toggleCheckbox = function (model) {
    $scope.LandDTO.Car[model] = true; 
};
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top