개발노트

SyntaxError: Illegal continue statement :no surrounding iteration statement 본문

Error/JavaScript_ jQuery

SyntaxError: Illegal continue statement :no surrounding iteration statement

dev? 2021. 12. 10. 21:47
반응형

function 함수명(){
    $("div.xxx ").each(function(idx,el){
                 ~~~소스 코드~~~
        if(xxx){
                 continue;
         }
     });
}

 

[원인]

함수 안에 continue 사용 

 

[해결]

continue가 아닌 return 으로 수정

 

 

 

출처 : https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=talkbox2&wr_id=1832954 

 

엄한 node.js 잡을뻔했네.

function x(){ $(

www.phpschool.com

 

반응형

'Error > JavaScript_ jQuery' 카테고리의 다른 글

Uncaught ReferenceError: $ is not defined  (0) 2022.01.22