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


HTML onkeyup用法及代碼示例


當用戶從鍵盤上釋放鍵時,此onkeyup事件屬性起作用。

用法:

<element onkeyup = "script">

屬性值:此屬性包含單個值腳本,該腳本在釋放鍵盤鍵時起作用。

支持的標簽:除<base>,<bdo>,<br>,<head>,<html>,<iframe>,<meta>,<param>,<script>,<style>之外的所有HTML元素均支持它。和<title>。

例:



<!DOCTYPE html> 
<html> 
    <head> 
        <title>onkeyup Event Attribute </title> 
        <style> 
            h1 { 
                text-align:center; 
                color:green; 
            } 
            h2 { 
                text-align:center; 
            } 
            input[type=text] { 
                width:100%; 
                padding:12px 20px; 
                margin:8px 0; 
                box-sizing:border-box; 
                font-size:24px; 
                color:white; 
            } 
            p { 
                font-size:20px; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks<h1> 
        <h2>onkeyup Event Attribute</h2> 
        <p>Release the key to set a green background color.</p> 
        <input type="text" id="demo" onkeydown="keydownFunction()"
                onkeyup="keyupFunction()"> 
        <script> 
            function keydownFunction() { 
                document.getElementById("demo").style.backgroundColor = "blue"; 
            } 
  
            function keyupFunction() { 
                document.getElementById("demo").style.backgroundColor = "green"; 
            } 
        </script> 
    </body> 
</html>                    

輸出:
按下鍵:
onkeyup
釋放 key :
onkeyup

支持的瀏覽器:下麵列出了onkeyup事件屬性支持的瀏覽器:

  • Chrome
  • IE瀏覽器
  • Firefox
  • Safari
  • Opera




相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 HTML | onkeyup Event Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。