arlenhui
2015-05-08 14:34
这段代码document.getElementById("photo").onclick=turn;是错误的不允许这样使用。
需要
document.getElementById("photo").onclick=function(e){
turn(e);
}
请有什么办法可以让我省略掉function(){}然后直接调用turn函数吗
·····).onclick=turn();
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题