onKeyUp 事件

定义和用法

onkeyup 事件会在键盘按键被松开时发生。

语法

  1. onkeyup="SomeJavaScriptCode"
参数 描述
SomeJavaScriptCode 必需。规定该事件发生时执行的 JavaScript。

支持该事件的 HTML 标签:

  1. <a>, <acronym>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <body>,
  2. <button>, <caption>, <cite>, <code>, <dd>, <del>, <dfn>, <div>, <dt>, <em>,
  3. <fieldset>, <form>, <h1> to <h6>, <hr>, <i>, <input>, <kbd>, <label>, <legend>,
  4. <li>, <map>, <object>, <ol>, <p>, <pre>, <q>, <samp>, <select>, <small>,
  5. <span>, <strong>, <sub>, <sup>, <table>, <tbody>, <td>, <textarea>, <tfoot>,
  6. <th>, <thead>, <tr>, <tt>, <ul>, <var>

支持该事件的 JavaScript 对象:

  1. document, image, link, textarea

实例

当您在例子中的输入域中键入字符时,字符会被更改为大写(逐一地):

  1. <html>
  2.  
  3. <head>
  4. <script type="text/javascript">
  5. function upperCase(x)
  6. {
  7. var y=document.getElementById(x).value
  8. document.getElementById(x).value=y.toUpperCase()
  9. }
  10. </script>
  11. </head>
  12.  
  13. <body>
  14.  
  15. 输入您的姓名: <input type="text" id="fname" onkeyup="upperCase(this.id)" />
  16.  
  17. </body>
  18. </html>

输出:

输入您的姓名: