runoops.com

jQuery 事件方法 第4页

jQuery focusout() 方法

阅读(452)

实例 Run this code » 当 <div> 元素或其任意子元素失去焦点时,设置 <div> 元素的背景颜色: $("div").focusout(function(){ $(this).css("backg...

jQuery focusin() 方法

阅读(452)

实例 Run this code » 当 <div> 元素或其任意子元素获得焦点时,设置 <div> 元素的背景颜色: $("div").focusin(function(){ $(this).css("backgr...

jQuery focus() 方法

阅读(490)

实例 Run this code » 添加函数到 focus 事件。当 <input> 字段获得焦点时发生 focus 事件: $("input").focus(function(){ $("span").css("displa...

jQuery event.metakey 属性

阅读(389)

实例 Run this code » 返回meta是否键被按下: $( "#checkMetaKey" ).click(function( event ) {     $( "#display" ).text( event.metaKey ...

jQuery event.which 属性

阅读(378)

实例 Run this code » 返回哪个键盘键被按下: $("input").keydown(function(event){     $("div").html("Key: " + event.which); }); 定义和用法 e...

jQuery event.type 属性

阅读(457)

实例 Run this code » 返回哪种事件类型被触发: $("p").on("click dblclick mouseover mouseout",function(event){ $("div").html("Event: " +...

jQuery event.timeStamp 属性

阅读(416)

实例 Run this code » 返回鼠标左键第一次按下到最后一次抬起所消耗的毫秒数: $("button").click(function(event){ $("span").text(event.timeStamp); }); 定义...

jQuery event.target 属性

阅读(493)

实例 Run this code » 返回哪个 DOM 元素触发了事件: $("p, button, h1").click(function(event){     $("div").html("通过 " + event.target.no...

jQuery event.stopPropagation() 方法

阅读(392)

实例 Run this code » 阻止 click 事件冒泡到父元素: $("span").click(function(event){ event.stopPropagation(); alert("The span element ...

jQuery event.stopImmediatePropagation() 方法

阅读(385)

实例 Run this code » 执行第一个事件处理程序,并阻止剩下的事件处理程序被执行: $("div").click(function(event){     alert("事件句柄 1 被执行");     event.stopI...