一個小寫轉(zhuǎn)大寫的JS:
Javascript代碼
document.getElementById("output").value=document.getElementById("input").value.toUpperCase();
document.getElementById("output").value=document.getElementById("input").value.toUpperCase();
大寫轉(zhuǎn)小寫
Javascript代碼
document.getElementById("TextBox1").value=document.getElementById("TextBox2").value.toLowerCase();
例:實時將輸入內(nèi)容,小寫字母轉(zhuǎn)為大寫字母,即使復(fù)制粘貼內(nèi)容,也可以實時轉(zhuǎn)換。
<tr>
<td valign="middle">
<input type="text" style="width:200px" id="aa" name="aa" maxlength="22" onkeyup="setUpperCase(this);" oncontextmenu="window.event.returnValue=false"/>
<span style="color:red;" ></span>
</td>
</tr>
<script type="text/javascript">
function setUpperCase(obj){
var a=obj.value;
var b=a.toUpperCase();
obj.value= b ;
}
</script>
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請
點擊舉報。