jQuery事件绑定on、off 和one,取代bind, live, delegateon和off的格式on代替bind,delegate,liveoff代替unbind,undelegate,die
jQuery最新版建议:最好用on来代替以前的bind, live, delegate,其中live是最不建议使用的。on和off的格式on$(elements).on(events[, selector][, data],handler);//格式一$(elements).on(eventsMap[, selector][, data]); //格式二例如:$('#containe...