读书人

js大小写变换

发布时间: 2012-11-22 00:16:41 作者: rapoo

js大小写转换
一个小写转大写的JS:

document.getElementById("output").value=document.getElementById("input").value.toUpperCase();

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

读书人网 >JavaScript

热点推荐