学习要点 •为什么使用指令 •创建自定义指令 •使用jqLite工作
一、为什么使用自定义指令
NG内置了许多自定义指令,但是它们有时并不能满足你的要求,这是需要我们创建自定义属性。二、自定义指令
接下来,我们来做一个小案例,当鼠标单击加价后,列表项自动递增,当然列表也是通过指令自动添加的,它本就是一个空的div<div class="jb51code">
<pre class="brush:xhtml;">
<!DOCTYPE>
<html ng-app="exampleApp">
学习要点 •为什么使用指令 •创建自定义指令 •使用jqLite工作
<div class="jb51code">
<pre class="brush:xhtml;">
<!DOCTYPE>
<html ng-app="exampleApp">
<script type="text/javascript" src="js/angular.min.js">
<script type="text/javascript">
angular.module("exampleApp",[])
.directive("unorderlist",function () {
// scope 作用域
// element 应用该指令的元素
// attrs 使用该指令的元素的属性
return function (scope,element,attrs) {
// attrs['unorderlist'] 获取unorderlist属性值,这里为products
// 获取数据模型值,这里为scope.products
var data = scope[attrs['unorderlist']];
// 创建一个
<div class="jb51code">
<pre class="brush:xhtml;">
<!DOCTYPE>
<html ng-app="exampleApp">