表单中的文本框如何自动转成大写,实现方法很简单,只需要给文本框加个如下属性即可: <input type="text" onkeyup="this.value=this.value.toUpperCase()" />
评论前必须登录!
注册