问题描述
- js Uncaught SyntaxError: Unexpected token }
-
源代码 <script> window.onload=function(){ c=document.getElementById("tu"); var p= c.getContext("2d"); var p= c.getContext("2d"); function a(e){ c.mousedown(function(e){ p.moveTo(e.clientX-10,e.clientY-10); c.onmousemove=function(e){ p.lineTo(e.screenX,e.screenY-50); p.stroke(); } } } } </script> <body> <canvas width="900" height="600" id="tu"></canvas> </body>
解决方案
花括号不匹配,仔细检查下,后括号是不是多了一个。
解决方案二:
c.mousedown(function(e){
==>
c.onmousedown=function(e){
解决方案三:
我在js中为一个已经定义的数组重新定义新的一个维度的数组时,调试器这样报错
?
SyntaxError:?Unexpected?token?[”" title="关于js中的“Uncaught?SyntaxError:?Unexpected?token?[”" style="margin:0px; padding:0px; border:0px; list-style:none">
......
答案就在这里:关于js中的“Uncaught SyntaxError: Unexpected token
时间: 2024-10-24 16:58:44