js 各種事件 如 點選事件 失去焦點 鍵盤事件等

2022-06-19 17:39:12 字數 613 閱讀 1466

事件驅動:

我們點選按鈕 按鈕去掉用相應的方法。

demo:

function func()

事件:onclick 點選

onblur:失去焦點

onfocus  得到焦點

onkeydown 按下鍵盤

onkeyup   鬆開鍵盤

onkepress  按住鍵盤

onmousedown 按下滑鼠

onmouseup  鬆開滑鼠

onmouseover 把滑鼠放到上面

ommousemove 移動滑鼠

onmouseout  移開滑鼠

onload  :頁面載入

onchange:改變

onsubmit  :表單提交。

如何繫結事件:

(1)function fun()

(2) document.getelementbyid("bt").onclick=function()       

(3) onload頁面載入

window.onload=function()

失去焦點得到焦點小案例

function fun()

function func()

JQuery select各種事件

一 基礎取值問題例如 1 設定value為pxx的項選中 selector val pxx 2 設定text為pxx的項選中 selector find option contains pxx attr selected true 注意 之前 selector find option text px...

div失去焦點 vue jq 事件 焦點

focus 獲得焦點 blur 失去焦點 change 失去焦點之後對比是否改動value值 keyup 按下按鍵後監聽 keydown keypress 按下按鍵前監聽 他們的which屬性keydown不區分大小寫,keypress區分大小寫 scroll 滾輪12 其他 event.preve...

失去焦點和獲得焦點發生事件 js

失去焦點 nblur hanshu this 獲得焦點 nf cus hanshu this 函式名 chksafe 功能介紹 檢查是否含有 引數說明 要檢查的字串 返回值 0 是1 不是 function chksafe a return 1 函式名 chkspc 功能介紹 檢查是否含有空格 引數...