ElementRef

前端之家收集整理的这篇文章主要介绍了ElementRef前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
export class ElementRef {
  public nativeElement: any;
  constructor(nativeElement: any) { this.nativeElement = nativeElement; }
}

A wrapper around a native element inside of a View.
在一个View中的一个native元素的包装。

An ElementRef is backed by a render-specific element. In the browser,this is usually a DOM element.
一个ElementRef由一个特定于渲染的元素支持。在浏览器中,这通常是一个DOM元素。

原文链接:https://www.f2er.com/angularjs/146442.html

猜你在找的Angularjs相关文章