这段代码document.getElementById("photo").onclick=turn;是错误的不允许这样使用。
需要
document.getElementById("photo").onclick=function(e){
turn(e);
}
请有什么办法可以让我省略掉function(){}然后直接调用turn函数吗
·····).onclick=turn();