我把function data(e) { alert(e.data) //1111 } function a() { $("button:eq(2)").click(1111, data) } a(); 写成了$("button:eq(2)").click(1111,function data(e){ alert(e.data); }) 这样也可以触发事件,这样对吗
absolutely
看起来可以,你可以试试。不过我建议还是按案例写更规范,整个课程都是这样写的。