本文介绍了如何使用Renderer2在Angular中设置本机元素的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想设置nativeElement的innerText / innerHTML / textContent?
I'd like to set the innerText/innerHTML/textContent of a nativeElement?
this.render.setValue(this.nativeCloneLi.querySelector('.down .inn'), timeVal);
其中 timeVal 是一个字符串
元素被正确选中,但 setValue 似乎根本不起作用
the element is correctly selected, but setValue seems not working at all
推荐答案
您需要使用 renderer.setProperty()
而不是 renderer.setValue()
。
import { Component, Renderer2, AfterViewInit, ElementRef, ViewChild } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<div #el></div>
`,
styleUrls: [ './app.component.css' ]
})
export class AppComponent implements AfterViewInit {
@ViewChild('el') el: ElementRef;
constructor(private renderer: Renderer2) {}
ngAfterViewInit() {
this.renderer.setProperty(this.el.nativeElement, 'innerHTML', '<h1>Hello world</h1>');
}
}
这篇关于如何使用Renderer2在Angular中设置本机元素的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!