欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angularjs使用directive自定义指令实现attribute继承的方法详解

程序员文章站 2023-10-30 20:08:58
本文实例讲述了angularjs使用directive自定义指令实现attribute继承的方法。分享给大家供大家参考,具体如下: 一、html代码: <...

本文实例讲述了angularjs使用directive自定义指令实现attribute继承的方法。分享给大家供大家参考,具体如下:

一、html代码:

<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title></title>
  <script src="../../content/plugins/angular/angular.min.js"></script>
</head>
<body ng-app="mainapp" ng-controller="maincontroller">
  <quber-grid style="border: 1px solid #f00;" title="qubernet"></quber-grid>
</body>
</html>

二、tmp.html文件

<div quber-grid-attr>
  我是测试的模板内容!
</div>

三、js代码:

//初始化angular对象
var myng = angular.module('mainapp', []);
myng.directive('qubergrid', function () {
    return {
      restrict: 'ea',
      replace: true,//移除<quber-grid>标签
      templateurl: 'tmp.html',
      link: function (sco, ele, attr) {
        //通知下属dom,执行名为sendchildgridattr的事件
        sco.$broadcast('sendchildgridattr', attr);
      }
    };
});
myng.directive('qubergridattr', function () {
    return {
      restrict: 'a',
      link: function (sco, ele, attr) {
        sco.$on('sendchildgridattr', function (event, data) {
          angular.foreach(data, function (val, key, obj) {
            if (key != '$attr' && key != '$$element') {
              //设置标签属性和值
              attr.$set(key, val);
            }
          });
        });
      }
    };
});
myng.controller('maincontroller', function ($scope) { });

效果如下:

Angularjs使用directive自定义指令实现attribute继承的方法详解

希望本文所述对大家angularjs程序设计有所帮助。