EmberJS 綁定元素屬性

2018-01-03 13:40 更新

綁定元素屬性

模板中綁定到控制器的HTML元素屬性稱為綁定元素屬性。

<script type="text/x-handlebars">
   {{bind-attr controller}}
</script>

上述語法描述了 bind-attr 標(biāo)簽有助于綁定控制器。

例子

<!DOCTYPE html>
<html>
   <head>
      <title>Emberjs Binding Element Attributes</title>
      <!-- CDN's-->
      <script src="/attachements/w3c/handlebars.min.js"></script>
      <script src="/attachements/w3c/jquery-2.1.3.min.js"></script>
      <script src="/attachements/w3c/ember.min.js"></script>
      <script src="/attachements/w3c/ember-template-compiler.js"></script>
      <script src="/attachements/w3c/ember.debug.js"></script>
      <script src="/attachements/w3c/ember-data.js"></script>
   </head>
   <body>
      <script type="text/x-handlebars">
         <!-- binding the color property in h3 tag -->
         <h3 {{bind-attr style="App.priority"}}>
            Warning Message!
         </h3>
      </script>

      <script type="text/javascript">
         App = Ember.Application.create();
         //declaring the color value
         App.priority= 'color:red'
      </script>
   </body>
</html>

輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將上述代碼保存在 binding_attr.html 文件中

  • 在瀏覽器中打開此HTML文件。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號