摘要: // 一般写法 function fn(event) { console.log(event) } div.onclick = function (event) { fn(event) } 简化后 function fn(event) { console.log(event) } div.oncli 阅读全文
posted @ 2019-12-20 21:54 林中有风 阅读(273) 评论(0) 推荐(0) 编辑