<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset =utf-8">
    <title>测试大小写转换</title>
</head>
<body>
  大写:<input type="text"  value=""  onkeyup="this.value=this.value.toUpperCase()"> <br/>
  小写: <input type="text" value=""  onkeyup="this.value=this.value.toLowerCase()">
</body>
</html>
View Code

相关文章:

  • 2022-12-23
  • 2021-07-29
  • 2022-12-23
  • 2022-01-13
  • 2022-01-16
  • 2022-01-22
猜你喜欢
  • 2022-01-02
  • 2021-12-18
  • 2021-12-18
  • 2022-12-23
  • 2021-11-23
  • 2022-02-02
相关资源
相似解决方案