angularJS自定义属性作为条件中转

<html>
<head>
    <meta charset="utf-8"/>
    <title></title>
</head>
<body ng-app="components">
<div ng-controller="c1">
    <myelement alert="loadData1()">
        <h1>哈哈</h1>
    </myelement>
</div>
<div ng-controller="c2">
    <myelement alert="loadData2()">
        <h1>吼吼</h1>
    </myelement>
</div>
</body>
<script src="angular.js"></script>
<script>
    var app= angular.module(components, []);
    app.controller("c1",function($scope){
        $scope.loadData1=function(){
            alert("哈哈");
        }
    });

    app.controller("c2",function($scope){
        $scope.loadData2=function(){
            alert("吼吼");
        }
    });

    app.directive("myelement",function(){
        return {
            link:function(scope, element, attr, superCtrl){
                element.bind("click",function(){
                    scope.$apply(attr.alert);//在这里注意下如果自定义属性使用驼峰命名法,那么attr调用该属性时仍然要保证完全小写
                });
            }
        }
    });
</script>
</html>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。