龙华新区附近酒店:js大小写转换

来源:百度文库 编辑:九乡新闻网 时间:2024/04/30 14:45:27
一个小写转大写的JS:
Javascript代码 document.getElementById("output").value=document.getElementById("input").value.toUpperCase();  
大写转小写
Javascript代码 document.getElementById("TextBox1").value=document.getElementById("TextBox2").value.toLowerCase();   例:实时将输入内容,小写字母转为大写字母,即使复制粘贴内容,也可以实时转换。