runoops.com

标签:jQuery

第24页
jQuery 事件方法

jQuery hover() 方法

阅读(431)

实例 Run this code » 当鼠标指针悬停在上面时,改变 <p> 元素的背景颜色: $("p").hover(function(){ $("p").css("background-color","yellow"); }...

jQuery 事件方法

jQuery focusout() 方法

阅读(438)

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

jQuery 事件方法

jQuery focusin() 方法

阅读(435)

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

jQuery 事件方法

jQuery focus() 方法

阅读(477)

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

jQuery 事件方法

jQuery event.which 属性

阅读(364)

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

jQuery 事件方法

jQuery event.type 属性

阅读(440)

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

jQuery 事件方法

jQuery event.timeStamp 属性

阅读(398)

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

jQuery 事件方法

jQuery event.target 属性

阅读(472)

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