AngularJS:directive自訂的指令

來源:互聯網
上載者:User

標籤:osi   pad   --   []   添加   obd   pos   blog   元素   

除了 AngularJS 內建的指令外,我們還可以建立自訂指令。

你可以使用 .directive 函數來添加自訂的指令。

要調用自訂指令,HTML 元素上需要添加自訂指令名。

使用駝峰法來命名一個指令, runoobDirective, 但在使用它時需要以 - 分割, runoob-directive:

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script> </head><body ng-app="myApp"><runoob-directive></runoob-directive><script>var app = angular.module("myApp", []);app.directive("runoobDirective", function() {    return {        template : "<h1>自訂指令!</h1>"    };});</script></body></html>

你可以通過以下方式來調用指令:

  • 元素名       <runoob-directive></runoob-directive>
  • 屬性          <div runoob-directive></div>
  • 類名          <div class="runoob-directive"></div>
  • 注釋          <!-- directive: runoob-directive -->
<!DOCTYPE html><html><head>    <meta charset="utf-8">    <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body ng-app="myApp"><runoob-directive></runoob-directive><div runoob-directive></div><div class="runoob-directive"></div><!-- directive: runoob-directive --><script>    var app = angular.module("myApp", []);    app.directive("runoobDirective", function() {        return {            restrict : "EACM",            template : "<h1>自訂指令!</h1>"        };    });</script></body></html>

restrict 值可以是以下幾種:

  • E 作為元素名使用
  • A 作為屬性使用
  • C 作為類名使用
  • M 作為注釋使用

restrict 預設值為 EA, 即可以通過元素名和屬性名稱來調用指令。

 

AngularJS:directive自訂的指令

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.