當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery keyup()用法及代碼示例


jQuery keyup()是一個內置方法,用於在用戶從鍵盤上釋放按鍵時觸發 keyup 事件。因此,使用keyup()方法我們可以檢測鍵盤上是否有按鍵被釋放。

用法:

$(selector).keyup(function) 

這裏的selector就是被選擇的元素。

參數:它接受一個可選參數作為函數,該函數給出是否按下任何鍵的想法。

jQuery 示例展示 keyup() 方法的用法原理:
示例 1:下麵的代碼用於檢查按下鍵盤按鍵後是否鬆開。

HTML


<!DOCTYPE html>
<html>
<head>
    <title>Jquery | Keyup() </title>
    <script src=
"https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js">
    </script>
    <script>
        $(document).keyup(function (event) {
            alert('You released a key');
        });
    </script>
</head>
<body>
    <center>
        <h1>
            Press and release a key from the keyboard
        </h1>
    </center>
</body>
</html>

輸出:

示例 2:下麵的代碼用於在鍵盤釋放按鍵時更改頁麵的背景顏色

HTML


<!DOCTYPE html>
<html>
<head>
    <title>Jquery | Keyup() </title>
    <script src=
"https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js">
    </script>
    <script>
        let colors = ['red', 'blue', 'green', 'grey',
            'black', 'white', 'teal', 'yellow'];
        let i = 0;
        $(document).keyup(function (event) {
            $('body').css('background-color', colors[i]);
            i++;
            i = i % 9;
        });
    </script>
</head>
<body>
    <center>
        <h3>
            Press any key from the keyboard and then release it <br>
            to change the background color of the page
        </h3>
    </center>
</body>
</html>

輸出:



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 jQuery keyup() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。