JSLite - pengendalian acara
Jika anda mempunyai sebarang pertanyaan, anda dialu-alukan untuk berkomunikasi di tempat-tempat ini, dan anda dialu-alukan untuk menyertai pasukan organisasi JSLite.io untuk pembangunan bersama!
kabur fokus fokus fokus muatkan ubah saiz kod> skrol turunkan klik dblclick turun tetikus tikus tetikus mouseover mouseout
mouseenter
mouseover
change
pilih
serahkan
keydown
keyup
keyup
error
Tambahkan terus pada peristiwa objek.blur
focus
focusin
focusout
load
resize
scroll
unload
click
dblclick
mousedown
mouseup
mousemove
mouseover
mouseout
mouseenter
mouseleave
change
select
submit
keydown
keypress
keyup
error
对象上直接添加事件。
$("#box").click(function(){ console.log("绑定点击事件") });
ready
ready(function($){ ... }) ⇒ self
添加一个事件侦听器,当页面dom
加载完毕DOMContentLoaded
事件触发时触发。加载完毕执行,建议使用$(func)
来代替这种用法。
$(document).ready(function(){ alert("当页面dom加载完毕执行"); console.log($("#box")); })
$(func)
加载完毕执行。与
ready
方法相同
//或者使用下面方法代替ready$(function(){ console.log("当页面dom加载完毕执行"); })
bind
为每个匹配元素的特定事件绑定事件处理函数。可以绑定这些事件
blur
focus
focusin
focusout
load
resize
scroll
unload
click
dblclick
mousedown
mouseup
mousemove
mouseover
mouseout
mouseenter
mouseleave
change
select
submit
keydown
keypress
keyup
error
paste
drop
dragover
。
$("#box").bind("click", function(){ console.log("绑定点击事件") });
unbind
解除绑定事件,从每一个匹配的节点对象中删除绑定的事件。
var f1=function(){alert("41");} $("#box").bind("click",f1) //⇒ 绑定事件 $("#box").unbind("click",f1) //⇒ 解除绑定事件 $("#box").bind("click",function(){alert("41");}) //⇒ 绑定事件 $("#box").unbind("click",function(){alert("41");}) //⇒ 解除绑定事件
on
readyon(type, [selector], function(e){ ... }) ⇒ self
on({ type: handler, type2: handler2, ... }, [selector]) ⇒ self
为每个匹配元素的特定事件绑定事件处理函数。可以绑定这些事件blur
focus
focusin
focusout
load
resize
scroll
unload
click
dblclick
mousedown
mouseup
mousemove
mouseover
mouseout
mouseenter
mouseleave
change
select
submit
keydown
keypress
keyup
error
paste
drop
dragover
$("#box").on("click", function(){ console.log("绑定点击事件") }); $("#box").on("click mouseover",function(evn){ console.log("2"+evn) }) //⇒ self 绑定两个事件 $("#box").on("click","p",function(){ console.log("被点击了") })//⇒ self 返回“#box”节点 $("#box").on("click",{val:1},function(){//传参数 console.log("dddd","event.data.val = " + event.data.val) }) $( "#box" ).on({ //绑定多个事件 click: function() { $( this ).css("background","red"); }, mouseover: function() { $( this ).css("background","yellow") }, mousedown: function() { $( this ).css("background","green") } });
ready(function($){ ... }) ⇒ selfrrreee
Tambahkan pendengar acara apabila halamandom
dimuatkanDOMContentLoaded< /code > Dipecat apabila acara menyala. Selepas memuatkan dan melaksanakan, disyorkan untuk menggunakan
$(func)
dan bukannya penggunaan ini.var f1=function(){alert("41");} $("#box").on("click",f1) //⇒ 绑定事件 $("#box").off("click",f1) //⇒ 解除绑定事件 $("#box").on("click",function(){alert("41");}) //⇒ 绑定事件 $("#box").off("click",function(){alert("41");}) //⇒ 解除绑定事件🎜$(func)🎜🎜🎜 dimuatkan dan dilaksanakan. Sama seperti kaedahsedia
🎜🎜$("#box").on("abc:click",function(evn,a,c){ console.log("2"+a+c) }) //⇒ self 绑定一个事件 $("#box").trigger("abc:click",["wwww"]) //⇒ self 触发并传一个参数进去🎜bind🎜🎜🎜Ikat pengendali acara untuk acara tertentu untuk setiap elemen yang dipadankan. Peristiwa ini boleh diikatkabur
focus
focusin
focusout
load
resize< /code>
scroll
unload
klik
dblclick
turun tetikus
mouse
tetikus mouseover mouseout
mouseenter
mouseover
change
< kod>pilihserahkan keydown
keydown
keyup
error
tampal
drop
dragover
. 🎜🎜rrreee🎜buka ikatan🎜🎜🎜Leraikan acara, alih keluar acara terikat daripada setiap objek nod yang sepadan. 🎜🎜rrreee🎜on🎜🎜🎜on(jenis, [pemilih], fungsi(e){ ... }) ⇒ diri
on({ jenis: pengendali, jenis2: pengendali2, ... }, [pemilih ]) ⇒ diri
Ikat pengendali acara kepada acara tertentu untuk setiap elemen yang dipadankan. Peristiwa ini boleh diikatkabur
focus
focusin
focusout
load
resize< /code>
scroll
unload
klik
dblclick
turun tetikus
mouse
tetikus mouseover mouseout
mouseenter
mouseover
change
< kod>pilihserahkan keydown
keydown
keyup
error
tampal
drop
dragover
. 🎜🎜rrreee🎜off🎜🎜🎜Lepaskan ikatan dan alih keluar acara terikat daripada setiap objek nod yang sepadan. 🎜
trigger
trigger(event, [args]) ⇒ self
. Jika parameter args diberikan, ia akan dihantar sebagai hujah kepada fungsi acara.
mencetuskan peristiwa yang ditentukan pada elemen koleksi nod yang dipadankan dengan self