加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

angularjs – 我可以制作一个Angular指令来匹配CSS选择器(而不仅

发布时间:2020-12-17 18:03:33 所属栏目:安全 来源:网络整理
导读:我可以定义一个影响所有 a的指令.文档中的元素如下: myApp.directive('a',function() { return { restrict: 'E',link: function(scope,element) { // Some custom logic to apply to all a elements } };}); 我可以这样做,但对于匹配给定CSS选择器的元素?
我可以定义一个影响所有< a>的指令.文档中的元素如下:

myApp.directive('a',function() {
  return {
    restrict: 'E',link: function(scope,element) {
      // Some custom logic to apply to all <a> elements
    }
  };
});

我可以这样做,但对于匹配给定CSS选择器的元素?像这样?

myApp.directive('a[href^="mailto:"]',element) {
      // Some custom logic to apply to all <a> elements
      // w/ a href attribute starting in "mailto:"
    }
  };
});

解决方法

没有.

当您将特定名称下的指令angular puts指向新名称下的指令高速缓存时,或将其推送到指定名称下已有指令的列表.

之后,角度搜索通过查找指令与(tagName | attrName | className | commentName)之间的对应关系,并在找到角度调用时编译列表中每个指令的函数,并将找到的(元素,attrs)作为参数传递给编译函数.

所以在你的情况下,[href ^ =“mailto:”]将被搜索为’< a [href ^ =“mailto:”]>< / a [href ^ =“mailto:”]>‘这显然是不存在的,属性,类和注释也是如此.

在您的情况下,最理智的解决方案是:

myApp.directive('a',element,attrs) {
        if (attrs.href.indexOf('mailto:') !== 0) { return; }
        // Some custom logic to apply to all a[href^="mailto:"] elements
    }
  };
});

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读