小写变大写

来源:互联网 发布:淘宝 10月 活动日期 编辑:程序博客网 时间:2024/04/30 06:25

http://www.w3school.com.cn/tiy/t.asp?f=hdom_onkeyup 只允许用大写字母时的一种方法,不错哦!

 <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" onkeyup="upperCase(this.id)">

 

</body>

</html>

原创粉丝点击