admin管理员组文章数量:1343349
I am trying to set style of element with javascript, inside my typescript but it doesn't work. This is what I try to do:
const element = document.getElementsByClassName('current');
element.style.backgroundColor = "" + this.styles.style.mainIdentifyingColor;
but I get error:
Property 'style' does not exist on HTMLCollectionOf.
I also tried with setAttribute but same thing..
I am trying to set style of element with javascript, inside my typescript but it doesn't work. This is what I try to do:
const element = document.getElementsByClassName('current');
element.style.backgroundColor = "" + this.styles.style.mainIdentifyingColor;
but I get error:
Property 'style' does not exist on HTMLCollectionOf.
I also tried with setAttribute but same thing..
Share Improve this question asked Apr 3, 2018 at 16:15 Nemanja GrabovacNemanja Grabovac 8782 gold badges17 silver badges30 bronze badges 3-
1
getElementsByClassName
does not return an array. It returns anHTMLCollection
as the error indicates. But, the premise is correct, – Randy Casburn Commented Apr 3, 2018 at 16:34 - This is not the idiomatic way of handling style changes in Angular. The framework provides many ways to change an element's style, and you should probably go through them instead of working around them. One simple reason being change detection. See angular.io/guide/ponent-styles | angular.io/guide/attribute-directives – msanford Commented Apr 3, 2018 at 16:48
- @msanford i know that, but in this specific case I have to do it like this – Nemanja Grabovac Commented Apr 4, 2018 at 11:21
2 Answers
Reset to default 7I know am not exactly answering your question but did you try working with NgStyle ? docs
HTML
<div [ngStyle]="{ 'background-color': myCustomColor }">
</div>
TS
someFunctionToBeCalled() {
this.myCustomColor=this.styles.style.mainIdentifyingColor;
}
You will need to iterate over the array of HTMLElements
included in the HTMLCollection
and set the style property on each.
OR
If you prefer to only set the style on the very first (or only, as you may see it) element with the class name of current
, then you can do this:
const element = document.getElementsByClassName('current');
element[0].style.backgroundColor = "" + this.styles.style.mainIdentifyingColor;
本文标签: javascriptelementstyle not working in typescript Angular 5Stack Overflow
版权声明:本文标题:javascript - element.style not working in typescript [Angular 5] - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743705198a2524996.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论