angularjs-ng-disabled 指令

前端之家收集整理的这篇文章主要介绍了angularjs-ng-disabled 指令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<!DOCTYPE html>

<html>

<head>

<Meta charset="utf-8">

<Meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

<link rel="stylesheet" href="">

<style>

table,th,td{

border:1px solid grey;

border-collapse:collapse;

padding:5px;

}

</style>

</head>

<body>

<div ng-app="" ng-init="mySwitch=true">

<p>

<button ng-disabled="mySwitch">点我</button>

</p>


<p>

<input type="checkBox" ng-model="mySwitch">按钮

</p>

<p>

{{mySwitch}}

</p>

</div>

</body>

<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>

</html>

猜你在找的Angularjs相关文章