How can I select all elements with the same class name?

后端 未结 4 2035
我在风中等你
我在风中等你 2021-01-07 10:30

I have a Boolean variable. It is stored in a hidden input field. Basically, if the user is signed in, it is false, if not, it is true.

Ther

4条回答
  •  执笔经年
    2021-01-07 11:17

    You can simply loop through the elements instead of just taking the 0th.

    var buttons = document.getElementsByClassName('project_download_btn');
    
    for(var i=0; i< buttons.length; i++){
        buttons[i].hidden = true;
    }
    

提交回复
热议问题