Angularjs 事件指令

时间:2021-04-28 21:40:13

1.  点击事件

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="angular.min.js"></script>
</head>
<body>
<div ng-app="myApp"> <div ng-controller="firstController">
<div ng-click="run()">点击</div>
</div>
</div>
<script type="text/javascript">
var app = angular.module("myApp", []);
app.controller('firstController',function($scope){
$scope.text='phonegap中文网'; $scope.run=function(){ alert('run');
console.log('run');
}
});
</script> </body>
</html>

  

Angularjs 事件指令

2. 样式 ng-class

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="angular.min.js"></script>
<style>
.red{background:red;}
.yellow{background:yellow;}
</style>
</head>
<body>
<div ng-app="myApp"> <div ng-controller="firstController">
<div ng-click="run()">点击</div>
<div ng-class="{red:true}">{{text}}</div>
</div>
</div>
<script type="text/javascript">
var app = angular.module("myApp", []);
app.controller('firstController',function($scope){
$scope.text='phonegap中文网'; $scope.run=function(){ alert('run');
console.log('run');
}
});
</script> </body>
</html>