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

HTML DOM Event对象onchange时间

时间:2015-01-28 13:05:45      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

语法:
onchange="SomeJavaScriptCode"


onchange 事件会在域的内容改变时发生

支持该事件的 HTML 标签:
<input type="text">, <select>, <textarea>

支持该事件的 JavaScript 对象:
fileUpload, select, text, textarea

例:
改变输入域内容执行JavaScript代码:

<span style="font-size:18px;"><html>
<head>
<script type="text/javascript">
function toUpper(id)
{
var word=document.getElementById(id).value
document.getElementById(id).value=word.toUpperCase()
}
</script>
</head>

<body>
请输入a-z任意一个:
<input type="text" id="fname" onchange="toUpper(this.id)" />
</body>
</html></span>

HTML DOM Event对象onchange时间

标签:

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

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