2016-12-15 47 views

回答

1

按照這link 由Thierry Templier誰也活躍在這個組如果我沒有記錯:)圖片來自該網站的帖子。

HostBinding

1

propertyName的:引用與propertyName的名稱主機的屬性。

@HostBinding('value') value:string; 

attr.attributeName:引用與與attributeName名主機的屬性。初始值設置爲關聯的指令屬性。在屬性中設置一個值會更新相應HTML元素的屬性。在此級別使用空值將刪除HTML元素上的屬性。

@HostBinding('attr.role') role:string; 

style.styleName:一個指向性鏈接到HTML元素的風格。

@HostBinding('style.width.px') width:number; 

class.className:一個指向性鏈接到HTML元素的類名。如果該值爲真,則該類將被添加,否則將被刪除。

@HostBinding('class.someClass') condition:boolean; 
相關問題