您好,登錄后才能下訂單哦!
這篇文章主要講解了“jQuery的事件處理實例分析”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“jQuery的事件處理實例分析”吧!
$(document).ready() --- onload
bind(type,[data],fn)
type
:表示事件類型(click
、mouseover
、mouseout...
)
[data]
:可選參數,表示傳遞給事件對象的額外數據
fn
:是一個函數(事件處理函數),當事件發生時執行的程序
為每一個匹配元素的特定事件(像click)綁定一個事件處理器函數
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="../jq/jquery.js"></script> </head> <body> <button id="btn">確定</button> <script> $(function(){ $('#btn').bind('click',function(){//可以給按鈕綁定其他事件 alert('事件綁定') }) }) </script> </body> </html>
顯示效果:點擊確定按鈕之后,出現彈窗
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="../jq/jquery.js"></script> </head> <body> <img src="../img/1.jpg" alt="" width="150" height="200"> <script> $(function(){ //通過鼠標的懸停、離開事件來改變img的圖像 $('img').bind('mouseover',function(){ $(this).attr({src:'../img/2.jpg'})//this表示的是img這個元素 }) $('img').bind('mouseout',function(){ $(this).attr({src:'../img/1.jpg'}) }) }) </script> </body> </html>
顯示效果:當鼠標懸停在圖片上時,顯示的是一個圖片。當鼠標離開這個圖片時,顯示的是另一張圖片。反復交替,沒有限制。
unbind([type],[data])
:刪除綁定的事件
(1)不帶參數:刪除元素上綁定的所有事件
(2)帶參數:[type]表示事件類型
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="../jq/jquery.js"></script> </head> <body> <img src="../img/1.jpg" alt="" width="150" height="200"> <script> $(function(){ //通過鼠標的懸停、離開事件來改變img的圖像 $('img').bind('mouseover',function(){ $(this).attr({src:'../img/2.jpg'})//this表示的是img這個元素 }) $('img').bind('mouseout',function(){ $(this).attr({src:'../img/1.jpg'}) }) $('img').unbind('mouseout')//解綁 }) </script> </body> </html>
顯示效果:鼠標離開圖片之后,圖片不會變成1.jpg
綁定的事件只能執行一次
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="../jq/jquery.js"></script> </head> <body> <img src="../img/1.jpg" alt="" width="150" height="200"> <script> $(function(){ //通過鼠標的懸停、離開事件來改變img的圖像 $('img').bind('mouseover',function(){ $(this).attr({src:'../img/2.jpg'})//this表示的是img這個元素 }) //一次性事件綁定 $('img').one('mouseout',function(){ $(this).attr({src:'../img/1.jpg'}) }) }) </script> </body> </html>
顯示效果:鼠標離開圖片后,圖片會變成1.jpg,但是這種變化只會執行一次。第二次離開圖片時,就不會變成1.jpg。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="../jq/jquery.js"></script></head><body> <div ></div> <script> $(function(){ $('div').hover(function(){ $(this).css('backgroundColor','pink') }) }) </script></body></html><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="../jq/jquery.js"></script> </head> <body> <div ></div> <script> $(function(){ $('div').hover(function(){ $(this).css('backgroundColor','pink') }) }) </script> </body> </html>
顯示效果:鼠標懸停在圖片上時,圖片由紅色變為粉色。離開圖片時并不會變回原來的紅色。
感謝各位的閱讀,以上就是“jQuery的事件處理實例分析”的內容了,經過本文的學習后,相信大家對jQuery的事件處理實例分析這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。