JQuery 绑定事件

jquery

2009-07-07 13:29

//无参数触发事件,有参数绑定函数


.blur();                         失去焦点
.focus();                        获得焦点
.change();                       修改
.click();                        点击
.dblclick();                     双击
.submit();                     提交

.mousedown();                    鼠标按下
.mouseup();                      鼠标松开
.mouseout();                     鼠标移出对象
.mouseover();                    鼠标移入对象
.mousemove();                    鼠标移动

.onkeydown();                    键盘按下
.onkeyup();                      键盘松开
.onkeydown();                    键盘按下

.ready();                        元素载入

.hover(over ,out );           鼠标移入 移出    
.toggle(F1,F2,F3);             每次点击执行函数   (比如 隐藏和显示)     

绑定代码
$("#t").select(function(){alert('select');});
$("#t").change(function(){alert('change');});
$("#t").blur(function(){alert('blur');});
$("#t").click(function(){alert('click');});  
$("#t").click();    //执行


$("#t").bind("click dblclick", function(){ alert( $(this).text() ); });

$("#t").unbind();取消所有绑定
$("#t").unbind("click");取消单击事件