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

后端 未结 4 2071
我在风中等你
我在风中等你 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条回答
  •  旧时难觅i
    2021-01-07 11:07

    if (document.getElementById('download_btn_var_input').value == "true") {
        var el = document.getElementsByClassName('project_download_btn');
        for (var i = 0; i < el.length; i++) {
            el[i].hidden = true;
        }
    }
    

提交回复
热议问题