<a [href]="url" [attr.data-tite]="title">{{title}}</a>
ts部分
export class PropertyBindingComponent implements OnInit {
title = "{{屬性繫結}}";
url = "http://tw.yahoo.com";
constructor() { }
ngOnInit(): void {
}
}
參考資料1.保哥的Angular 開發實戰:從零開始
2.Angular官網