父作用域和子作用域 点击按钮互相发送消息

话不多说,上代码

<script src="angular-1.6.8/angular.js"></script>
<body ng-app="myApp">
<div ng-controller="father">
	<input type="text" ng-model="father"/>
    <input type="button" ng-click="father_click()" value="广播"/>
    
    <div ng-controller="child">
    	<input type="text" ng-model="child"/>
    	<input type="button" ng-click="child_click()" value="消息"/>
    </div>

</div>

<script>
var app = angular.module("myApp",[]);

app.controller("father",function($scope){
	/*父亲发送广播*/
	$scope.father_click = function(){	
		$scope.$broadcast("father",$scope.father);
		}
		
	/*父亲接收消息*/
	$scope.$on("child",function(event,data){
		$scope.father = data;
		});
	
	});
		
		
app.controller("child",function($scope){
	/*儿子发送消息*/
	$scope.child_click = function(){
		$scope.$emit("child",$scope.child);
		}
	/*儿子接受广播*/
	$scope.$on("father",function(event,data){
		$scope.child = data;
		});	
	
	});	
</script>
</body>


发消息:

/*儿子发送消息*/
	$scope.child_click = function(){
		$scope.$emit("child",$scope.child);
		}

发广播:

/*父亲发送广播*/
	$scope.father_click = function(){	
		$scope.$broadcast("father",$scope.father);   //$scope.father-->文本框中的数据
		}

收消息:

/*父亲接收消息*/
	$scope.$on("child",function(event,data){
		$scope.father = data;
		});




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值