摘要: 1、关于Jquery中的bind方法: 最基本的用法:$("div").bind('click‘,function(){//some codes}');然后可以有同时注册几个方法$("div").bind('mouseover mouseout’,function(){ $(this).toggleClass("over");}');上面这个写法等同于:$(function(){ $("div").bind('mouseover',function(){ $(this 阅读全文