当前位置: 代码迷 >> JavaScript >> js大小写变换
  详细解决方案

js大小写变换

热度:137   发布时间:2012-11-22 00:16:41.0
js大小写转换
一个小写转大写的JS:
document.getElementById("output").value=document.getElementById("input").value.toUpperCase();

大写转小写
document.getElementById("TextBox1").value=document.getElementById("TextBox2").value.toLowerCase();

  相关解决方案