最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - element.style not working in typescript [Angular 5] - Stack Overflow

matteradmin0PV0评论

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 an HTMLCollection 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
Add a ment  | 

2 Answers 2

Reset to default 7

I 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;
Post a comment

comment list (0)

  1. No comments so far