当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。