html代码
选择 提交申请 提交申请
JavaScript代码:
var app = angular.module('test', []);app.controller('chkCtrl', function($scope){ $scope.showType=1; $scope.sub = function(){ $scope.showType=!$scope.showType; }};