jquery基礎函式用法5

2021-08-25 20:12:07 字數 2401 閱讀 7161

50.change(fn)設定onchange事件的方法

eg:hello

$("p").change( function() ); ==>> [ hello

51.click()觸發onclick事件, click(fn)設定onclick方法

52.dblclick(fn)設定ondblclick方法

53.error(fn)設定error方法

54.bind(type, data, fn)對所有選定的element判斷事件,type是事件型別,data是引數,fn是事處理方法.

eg:1.$("p").bind("click", function());

eg:2.function handler(event)

$("p").bind("click", , handler) ==>> [ alert("bar") ]

55.blur() 觸發blur方法,blur(fn)設定blur函式

eg: hello

$("p").blur( function() ); ==>> [ hello

56.focus()觸發onfocus,focus(fn)設定focus方法

eg:hello

$("p").focus( function() ); ==>> [ hello

]57.hover(over, out) 設定mouse移入以及mouse移出時所觸發的事件.

eg:$("p").hover(function(),function());

58 keydown(fn),keypress(fn),keyup(fn),按鍵盤相關的操作分別對應onkeydown,onkeypress,onkeyup.

59 mousedown(fn),mousemove(fn),mouseout(fn),mouseover(fn),mouseup(fn)這些是mouse相關的操作分別對應

onmousedown,onmousemove,onmouseout,onmouseover,onmouseup.

60.load 當element load事件發生時觸發

eg:hello

$("p").load( function() ); ==>> [ hello

]61.one(type, data, fn)與bind差不多,最大的區別是前者只執行一次後便不再響應.如果執行後不想繼續執行預設的方法只要fn中返回值

return false就可以了.

eg: hello

$("p").one("click", function()); ==>> [ alert("hello") ]

62.ready(fn)當dom 結構載入完畢的時候.用此方法時,請不要在onload方法裡面寫**.不然就不會觸發ready事件

eg:1.$(document).ready(function());

eg:2.jquery(function($) );

63.resize 設定onresize方法.當大小改變時觸發

eg: hello

$("p").resize( function() ); ==>> [ hello

]64 scroll(fn) 設定onscroll方法

65.select()觸發onselect方法.select(fn)設定select方法

66. submit()提交表單,submit(fn)設定submit方法.

eg:$("#myform").submit( function() );

67.toggle(even, odd),even當偶數單擊時執行,odd當奇數單擊時執行.用unbind('click')刪除

eg:$("p").toggle(function(),function());

68.trigger(type)觸發相應的type方法

eg: hello

$("p").trigger("click") ==>> [ alert('hello') ]

69 unbind(type, fn)與bind相反

1.unbind()刪除所有的繫結.

eg:hello

$("p").unbind() ==>> [ hello

]2.unbind(type)刪除指定的繫結

eg:hello

$("p").unbind("click") ==>> [ hello

]3.unbind(type, fn)刪除指定type的指定fn

eg:hello

$("p").unbind("click", function() ) ==>> [ hello

]70.unload(fn)當頁面unload的時候觸發方法

eg: hello

$("p").unload( function() ); ==>> [ hello

]

jQuery的is 函式的用法

jquery中的is 方法可以判斷元素是否可見,是否隱藏,是否選中等。下面我們分別舉例介紹。一 判斷元素是否隱藏 如下html中的div元素是隱藏的 複製 示例 你看不到我 二 判斷checkbox是否選中 jquery中可以通過xx.is checked 判斷checkbox,radiobutto...

jQuery函式庫基礎

src js jquery 1.12.4.min.js script 寫自己的 呼叫jquery函式 script 將獲取元素的語句寫到頁面頭部,會因為元素還沒有載入而出錯,jquery提供了ready方法解決這個問題,它的速度比原生的 window.onload 更快。src jquery jqu...

python基礎5 函式

函式 函式的作用 函式 是用於對重複 塊的封裝,解決 重複的問題 語法 def 函式名 形式引數 函式體 重複 塊 return 資料 1.定義函式 不會執行函式體的 2.必須呼叫函式的時候才會執行封裝的 塊 呼叫語法 函式名 3 函式必須先定義 再呼叫 例 封裝乙個函式,實現99乘法表 defcf...