toUpperCase() 大写

toLowerCase() 小写

例如:

<html>

<head>

<script type="text/javascript">

function upperCase(x)

{

var y=document.getElementById(x).value

document.getElementById(x).value=y.toLowerCase()

}

</script>

</head>

<body>

输入些字母:

<input type="text" >

</body>

</html>

相关文章:

  • 2021-07-21
  • 2022-01-04
  • 2022-12-23
  • 2021-09-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-24
  • 2022-01-04
  • 2022-12-23
  • 2021-12-01
相关资源
相似解决方案