博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DOM in Angular2
阅读量:5060 次
发布时间:2019-06-12

本文共 742 字,大约阅读时间需要 2 分钟。

<elementRef>

import {ElementRef} from "@angular/core";

 

constructor(private element: ElementRef) {   // now, we can reference to: this.element}

 

this.element.nativeElement('.js-banner-container'),

 

Provides access to the underlying native element (DOM element).

 

import {AfterContentInit, Component, ElementRef} from '@angular/core';@Component({  selector: 'app', template: ` 

My App

 { { node }} 
` }) export class App implements AfterContentInit { node: string; constructor(private elementRef: ElementRef) { } ngAfterContentInit() { const tmp = document.createElement('div'); const el = this.elementRef.nativeElement.cloneNode(true); tmp.appendChild(el); this.node = tmp.innerHTML; } }

参考这篇 

转载于:https://www.cnblogs.com/haimingpro/p/6237241.html

你可能感兴趣的文章
2019年春季学期第二周作业
查看>>
2014北邮计算机考研复试上机题解(上午+下午)
查看>>
mySQL 教程 第7章 存储过程和函数
查看>>
OGG同步Oracle到Kafka(Kafka Connect Handler)
查看>>
算法笔记_056:蓝桥杯练习 未名湖边的烦恼(Java)
查看>>
idea的maven项目无法引入junit
查看>>
jquery实现限制textarea输入字数
查看>>
thinkphp5 csv格式导入导出(多数据处理)
查看>>
页面置换算法-LRU(Least Recently Used)c++实现
查看>>
如何获取Android系统时间是24小时制还是12小时制
查看>>
fur168.com 改成5917电影
查看>>
PHP上传RAR压缩包并解压目录
查看>>
codeforces global round 1题解搬运
查看>>
python os模块
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
多服务器操作利器 - Polysh
查看>>