码迷,mamicode.com
首页 > Web开发 > 详细

HTML Dom Event对象onKeyUp事件

时间:2015-02-03 11:18:43      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

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

支持该事件的 HTML 标签:
<a>, <acronym>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <body>,
<button>, <caption>, <cite>, <code>, <dd>, <del>, <dfn>, <div>, <dt>, <em>,
<fieldset>, <form>, <h1> to <h6>, <hr>, <i>, <input>, <kbd>, <label>, <legend>,
<li>, <map>, <object>, <ol>, <p>, <pre>, <q>, <samp>, <select>, <small>,
<span>, <strong>, <sub>, <sup>, <table>, <tbody>, <td>, <textarea>, <tfoot>,
<th>, <thead>, <tr>, <tt>, <ul>, <var>
支持该事件的 JavaScript 对象:
document, image, link, textarea

例子:

<html>

<head>
<script type="text/javascript">
function toUpper(id)
{
var word=document.getElementById(id).value;
document.getElementById(id).value=word.toUpperCase();
}
</script>
</head>

<body>
 
输入的字符会被更改为大写: <input type="text" id="fname" onkeyup="toUpper(this.id)" />

</body>
</html>

HTML Dom Event对象onKeyUp事件

标签:

原文地址:http://blog.csdn.net/helloboat/article/details/43445629

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!