SyntaxError: missing ) after argument list

后端 未结 6 852
滥情空心
滥情空心 2020-12-05 13:54

I am getting the syntax error:

SyntaxError: missing ) after argument list

From this jQuery code:

$(\'#contentData\').append         


        
6条回答
  •  不思量自难忘°
    2020-12-05 14:09

    For me, once there was a mistake in spelling of function

    For e.g. instead of

    $(document).ready(function(){
    
    });
    

    I wrote

    $(document).ready(funciton(){
    
    });
    

    So keep that also in check

提交回复
热议问题