jQuery hover() 方法
实例 Run this code » 当鼠标指针悬停在上面时,改变 <p> 元素的背景颜色: $("p").hover(function(){ $("p").css("background-color","yellow"); }...
实例 Run this code » 当鼠标指针悬停在上面时,改变 <p> 元素的背景颜色: $("p").hover(function(){ $("p").css("background-color","yellow"); }...
实例 Run this code » 当 <div> 元素或其任意子元素失去焦点时,设置 <div> 元素的背景颜色: $("div").focusout(function(){ $(this).css("backg...
实例 Run this code » 当 <div> 元素或其任意子元素获得焦点时,设置 <div> 元素的背景颜色: $("div").focusin(function(){ $(this).css("backgr...
实例 Run this code » 添加函数到 focus 事件。当 <input> 字段获得焦点时发生 focus 事件: $("input").focus(function(){ $("span").css("displa...
实例 Run this code » 返回meta是否键被按下: $( "#checkMetaKey" ).click(function( event ) { $( "#display" ).text( event.metaKey ...
实例 Run this code » 返回哪个键盘键被按下: $("input").keydown(function(event){ $("div").html("Key: " + event.which); }); 定义和用法 e...
实例 Run this code » 返回哪种事件类型被触发: $("p").on("click dblclick mouseover mouseout",function(event){ $("div").html("Event: " +...
实例 Run this code » 返回鼠标左键第一次按下到最后一次抬起所消耗的毫秒数: $("button").click(function(event){ $("span").text(event.timeStamp); }); 定义...
实例 Run this code » 返回哪个 DOM 元素触发了事件: $("p, button, h1").click(function(event){ $("div").html("通过 " + event.target.no...
实例 Run this code » 阻止 click 事件冒泡到父元素: $("span").click(function(event){ event.stopPropagation(); alert("The span element ...