模板中綁定到控制器的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文件。
更多建議: