搜尋

首頁  >  問答  >  主體

前端 - angular中應該如何取得自訂標籤的name屬性?

<livebit name="" age=""></livebit>

在指令的Link中取得name屬性

阿神阿神2809 天前717

全部回覆(1)我來回復

  • 大家讲道理

    大家讲道理2017-05-15 16:51:12

    這個要自己寫 directive 了,例:

    <livebit name="" age=""></livebit>
    
     angular.module('MyApp').directive('livebit', [function() {
        return {
            restrict: 'E',  
            link: function (scope, elm, attrs) {
                 arrts.name  //就可以拿到 name的值
                 attrs.age //同上哦
            };
    }]);
    
    // restrict 的取值
         E == element(根据元素名找 livebit)
         C == class (根据类名来找 livebit)
         A == attribute (根据属性名找 livbit)
         ACE == 能找的都找
    

    所以那 你的自訂標籤可以寫成大致幾種:
    有這種:

    restrict = 'E'
    <livebit name="" age=""></livebit>
    

    這種:

        restrict = 'C'
    <p class="livebit" name="" age=""></p>
    

    還有這種:

    restrict = 'C'
    <p name="" age="" livebit></p>
    

    找到元素之後 透過link回調 你就對自己的標籤為所欲為。

    请输入代码
      elm.appendChild(xxxxx)
      $(elm).jquery-插件xxx()
      .........
     ...........
    

    回覆
    0
  • 取消回覆