How to apply CSS style to all elements with same ID using one button?

后端 未结 6 598
小蘑菇
小蘑菇 2021-01-26 06:59

My idea was to create a button to hide/show all hidden text (Hide by highlighting the text in black, show by making the background color of the text transparent). But the codes,

6条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-26 07:27

    Use a class instead of an id. Then use document.getElementsByClassName("p2") which will return an array of the matching elements and loop over them.

提交回复
热议问题