demo.html
<!doctype html>
<html ng-app="freefedApp">
<head>
<title>angular应用demo</title>
<script src="angular.js"></script>
<script src="app.js"></script>
</head>
<body>
<div ng-controller="freefedCtrl">
<div event-directive change="change(title)"></div>
</div>
</body>
</html>
app.js
/*声明module*/
var module = angular.module('freefedApp',[]);
/*声明控制器*/
module.controller('freefedCtrl',['$scope',function($scope){
//监听directiveClick事件
$scope.$on('directiveClick',function(event,param){
console.log( param ); // 打印结果 {title : '我是来自指令子级作用域'}
});
$scope.change = function(title){
var result = '请注意接收父级广播';
//向子级作用域广播parentBroadcast事件
$scope.$broadcast('parentBroadcast',{msg : result});
};
}]);
/*声明指令*/
module.directive('eventDirective',function(){
return {
scope : {
change : '&'
},
replace : true,
template : '<a>点我向上冒泡事件</a>',
link : function( scope,el,attr ){
el.on('click',function(){
//向上冒泡directiveClick事件,通知父级作用域
scope.$emit('directiveClick',{title : '我是来自指令子级作用域'});
});
//监听parentBroadcast事件广播
scope.$on('parentBroadcast',function(event,msg){
console.log( msg ); //打印结果 { msg : 请注意接收父级广播 }
});
}
};
});
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有