jQuery練習 滑鼠移來移去,焦點獲得失去

2021-04-23 14:43:24 字數 1427 閱讀 6587

練習鏈式操作等

>jquery滑鼠移來移去,焦點獲得失去

title

>

<

script

type="text/ecmascript"

src="../js/jquery-1.2.6.js"

>

script

>

<

script

type="text/ecmascript"

>

//新增獲得焦點失去焦點

$("document").ready(function()).blur(function())

})});

});//根據標籤名找標籤,$(input[@type='password'])多個標籤之間用逗號隔開.

//$("..").focus(function())//鏈式操作用$(this)取得當前物件.

//設定css的方法:$(this).css();//形式key:"value"

//$().hover(f1(){},f2(){})//hover的用法

$(function())},function())})

});//去掉這個會有小毛病

$(document).ready(function()).blur(function());}})

//兩種鏈式操作方法

$(function()).mouseout(function())

//第二種,一層套一層,不大習慣。像c#語法,但又不能像那樣格式。

//$("#d2").mousedown(function())

//});

$("#d2").mousedown(function())

});});

script

>

head

>

<

body

>

<

div>

<

input

type="text"

id="i1"

/>

<

textarea

id="textarea1"

cols="20"

rows="2"

>

textarea

>

<

divid="d1"

>hello

div>

<

divid="d2"

>hi,hi

div>

div>

body

>

html

>

隨滑鼠輪動翻動層 jquery小練習

閒來無事在 上看見乙個網頁製作的不錯,就仿照做來看看。特此記錄下來。亮點 隨滑鼠上下滾動,展示頁面隨之不同,翻動效果。功能點 滑鼠向上,向下判斷事件。css html hide show box foot ul li a link foot ul li active red orange yello...

jQuery 選單小練習 實現點選和移動滑鼠效果

這個 的練習是點選事件後 如何用jquery聯動的方式找到相關標籤 實現的結果是點選選單一或者選單二等 會出現相關菜品,並隱藏其他菜品.滑鼠移動才菜品上會在右側框內出現相關菜品的 實現特殊的效果.1 doctype html 2 html lang en 3 head 4 meta charset ...

JQuery 滑鼠事件簡介

mouseover事件於使用者把滑鼠從乙個元素移動到另外乙個元素上時觸發,mouseout事件於使用者把滑鼠移出乙個元素時觸發。下面為你詳細介紹下jquery中的滑鼠事件 1 click事件 click事件於使用者在元素敲擊滑鼠左鍵,並在相同元素上鬆開左鍵時觸發 p click function 2...