您好Angular js
。
我正在使用前端Icheck
设计的checkbox
插件。因为我无法从前端获得checkbox
值。
<input type="checkbox" ng-model="createLeaveTypeForm.allow_encashment" name="allow_encashment" class="flat" >
<span style="margin-left: 5px;">Allow Encashment</span> </label>
如果我使用$scope.createLeaveTypeForm.allow_encashment
获得该值,则会显示未展开的值。任何人都会指导我实现这一目标。
提前致谢。
答案 0 :(得分:0)
您需要初始化复选框范围值,初始化范围如下所示默认为未选中;
$scope.createLeaveTypeForm.allow_encashment = false;
并且defualt检查
$scope.createLeaveTypeForm.allow_encashment = true;