jquery event

http://docs.jquery.com/Events
绑定事件:
bind( type, [data], fn ) Returns: jQuery
1)type是事件类型, 包括:
blur, focus, load, resize, scroll, unload, click, dblclick,  mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select,  submit, keydown, keypress, keyup, error
2)data是附加的能被传到event handler的数据, 通过event.data可以取到,当然这个参数是可选的。
3)fn是event handler
function callback(eventObject) {
  this; // dom element
}


拆除绑定:
unbind( type, data )
指定type可以将事件响应解除: $("#theone").unbind('click');
指定data,可以将data从event.data去掉

特别的事件绑定
一般的, 都是给一个event设定一个handler,比如click(fn);
hover比较特别, 本身包含了两个事件over和out,于是需要给两个event都指定handler,于是就有hover( over, out ):
 $("li").hover(
      function () {
        $(this).append($("<span> ***</span>"));
      }, 
      function () {
        $(this).find("span:last").remove();
      }
    );

类似的还有toggle( fn, fn1 )

你可能感兴趣的:(JavaScript,jquery)