我有一个带有链接的html代码。下面的代码是我的模板:
<HtmlView [html]="htmlString" ></HtmlView>
这是我的组件:
import { Component } from "@angular/core";
@Component({
moduleId: module.id,
templateUrl: "./creating-htmlview.component.html"
})
export class CreatingHtmlViewExampleComponent {
public htmlString: string;
constructor() {
this.htmlString = '<a href="http://google.com/">google</a>';
}
}
当HtmlView运行时如何处理a
元素?有什么方法可以检测用户何时运行链接?