这个return有什么错误啊?
function WindowToCanvas(x,y){
var box=canvas.getBoundingClientRect()
return {x:Math.round(x-box.left),y:Math.round(y-box.top)}
alert("节点正确");}
我把alert放在return前可以正常弹出
放到后面就不行了
我把l
3回答
-
蜂之谷
都return 了,当然不会弹出;return后,不再执行后面的代码
-
乱也
box变量后面差个分号