Uncaught SyntaxError: Unexpected Token - jQuery - Help!

前端 未结 2 1756
野趣味
野趣味 2021-01-18 11:55

Please help me get to the bottom of this...the only file that this error is pointing to, is my jQuery file.

See the error I am receiving here.

相关标签:
2条回答
  • 2021-01-18 12:02

    Your entire file is throwing the error.

    You're trying to execute some HTML as Javascript code.

    0 讨论(0)
  • 2021-01-18 12:11

    If you look at the data property listed in the debugger to the right, it looks like you are trying to eval() some HTML code as JavaScript. My guess is would be that your AJAX request is rendering an HTML error or pointing to the wrong URL, and not getting JS back.

    0 讨论(0)
提交回复
热议问题