This example describes the JS hint: uncaught syntaxerror:unexpected token illegal error solution. Share to everyone for your reference, specific as follows:
Uncaught syntaxerror:unexpected Token illegal
Non-captured syntax error: unexpected illegal token
As shown in the following illustration:
Copy Code code as follows:
<input id= "btn_0_4eae4f474c91156086c0d4ea7e983c69c215b649" type= button "value=" Connection "onclick=" Middleware_connect (0, 4eae4f474c91156086c0d4ea7e983c69c215b649) ">
After viewing the source can be found:
onclick= "Middleware_connect (0, 4eae4f474c91156086c0d4ea7e983c69c215b649)"
The second argument is a string, but it is not enclosed in quotes, so this exception is thrown.
After quoting, the problem is resolved:
Copy Code code as follows:
<input id= "btn_0_4eae4f474c91156086c0d4ea7e983c69c215b649" type= button "value=" Connection "onclick=" Middleware_connect (' 0 ', ' 4eae4f474c91156086c0d4ea7e983c69c215b649 ') >
More readers interested in JavaScript-related content can view the site topics: "JavaScript error and debugging skills Summary", "JavaScript value-handling Skills Summary", "JavaScript Coding Operation Skills Summary", " JavaScript in the JSON Operation tips Summary, "JavaScript switching effects and techniques summary", "JavaScript Search Algorithm Skills Summary", "JavaScript animation effects and Skills summary", "JavaScript data structure and algorithm skills summary , JavaScript traversal algorithms and techniques summary and JavaScript mathematical Operational Usage Summary
I hope this article will help you with JavaScript programming.