码迷,mamicode.com
首页 > 其他好文 > 详细

ng-click

时间:2017-03-16 23:46:31      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:$scope   utf-8   meta   cli   style   lang   charset   rip   button   

<!DOCTYPE html>
<html lang="en" ng-app="btn">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="angular.js"></script>
</head>
<body>
<div ng-controller="con1">
<input type="button" value="按钮" ng-click="a=!a">
<div style="background: red;width: 300px;height: 300px;" ng-show="a"></div>
</div>
<script>
var app=angular.module(‘btn‘,[]);
app.controller(‘con1‘,function ($scope) {
$scope.a = true;
})
</script>
</body>
</html>

ng-click

标签:$scope   utf-8   meta   cli   style   lang   charset   rip   button   

原文地址:http://www.cnblogs.com/qiudongjie/p/6562144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!