为了账号安全,请及时绑定邮箱和手机立即绑定

angularjs怎么实现checkbox选中触发事件

angularjs怎么实现checkbox选中触发事件

BIG阳 2019-03-16 14:11:16
angularjs怎么实现checkbox选中触发事件
查看完整描述

1 回答

?
料青山看我应如是

TA贡献1772条经验 获得超8个赞

html代码:
<input type="checkbox" ng-click="sub(1)">选择

<div ng-show="showType==1" class="btn">
<button type="submit">提交申请</button>
</div>

<div ng-show="showType==2" class="btn">
<button type="submit">提交申请</button>
</div>

js代码:
var app = angular.module('test', []);
app.controller('chkCtrl', function($scope){
$scope.showType=1;
$scope.sub = function(type){
if(type==1){
$scope.showType =2;
}
else if( $scope.showType ==2){
$scope.showType =1;
}
};

这代码点击勾选的时候有效



查看完整回答
反对 回复 2019-03-25
  • 1 回答
  • 0 关注
  • 1234 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信