1. jQuery("#id").click(func1).mouseover(func2)//方法连写,func为方法的名字
  2. jQuery("#id").click(function(){//你的具体方法实现}),mouser(function(){//你的具体方法实现});
  3. jQuery("#id").bind("click mouseover",func)//两个事件中间有空格 ,func为方法的名字
  4. jQuery("#id").bind("load scroll",function(){//你的具体方法实现});

相关文章:

  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
  • 2022-12-23
  • 2022-03-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-12
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案