码迷,mamicode.com
首页 > 其他好文 > 详细

onchange

时间:2017-10-10 16:44:26      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:inpu   case   uppercase   script   http   bsp   html   text   rip   

http://www.w3school.com.cn/tiy/t.asp?f=hdom_onchange

 

<html>

<head>
<script type="text/javascript">
function upperCase(x)
{
var y=document.getElementById(x).value
document.getElementById(x).value=y.toUpperCase()
}
</script>
</head>

<body>

Enter your name: <input type="text" id="fname" onchange="upperCase(this.id)">

</body>
</html>

onchange

标签:inpu   case   uppercase   script   http   bsp   html   text   rip   

原文地址:http://www.cnblogs.com/java8090/p/7645717.html

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