[removed] SyntaxError: missing ) after argument list

前端 未结 2 1369
野的像风
野的像风 2020-12-05 09:37

I am getting the error:

SyntaxError: missing ) after argument list

With this javascript:

var nav = document.getE         


        
2条回答
  •  攒了一身酷
    2020-12-05 10:14

    You have an extra closing } in your function.

    var nav = document.getElementsByClassName('nav-coll');
    for (var i = 0; i < button.length; i++) {
        nav[i].addEventListener('click',function(){
                console.log('haha');
            }        // <== remove this brace
        }, false);
    };
    

    You really should be using something like JSHint or JSLint to help find these things. These tools integrate with many editors and IDEs, or you can just paste a code fragment into the above web sites and ask for an analysis.

提交回复
热议问题