2009年4月29日星期三

input 域字母小写转大写

input 域字母小写转大写


<script>

 <!--

 function t(obj){

  var thisValue = obj.value;

  var thisValue_Up= thisValue.toUpperCase();

  obj.value =  thisValue_Up;

 

 }

 -->

</script>




<input onkeyup="t(this)" type="TEXT" />

没有评论: