如何在typescript / angular中设置Child html元素的样式

时间:2018-01-15 14:51:44

标签: angular typescript dom visual-studio-code ionic3

我正在使用ionic 3构建混合移动应用程序,其中一个要求是用户可以动态更改工具栏颜色。在页面呈现后,html的外观如何:

<div id="divICanControl"> //this div i can control <div> //but this one is generated by the framework and this is the div that change the background color of the toolbar </div> </div>

我试图做以下事情: document.getElementById('divICanControl').childNodes[0].style.backgroundColor = this.someColor;

它偶尔会工作,但它在vscode中创建了以下错误: [ts] Property 'style' does not exist on type 'Node'.

它停止了应用程序的构建。

我现在正在寻找使用角度来操纵dom的正确方法。

感谢您的帮助,请记住我是angular 5和打字稿的新手。

1 个答案:

答案 0 :(得分:1)

样式元素的推荐方法不是文档....样式。它与渲染器有关。观察:

<div id="first">
    first
    <div id="second">
        second
    </div>
</div>

<button (click)="change()">Change</button>


import { Component, OnInit, Renderer2 } from '@angular/core';

    constructor(private renderer: Renderer2) { }

    change() {
        const parent: HTMLElement = document.getElementById('first');
        const child = parent.children[0];
        this.renderer.setStyle(child, 'background-color', 'red');
    }