출처: https://bumcrush.tistory.com/182 [맑음때때로 여름]

toLowerCase();  소문자로 바꿔주는 함수 

toUpperCase() ;  대문자로 바꿔주는 함수

 

대문자를 소문자로

ex) var a = document.frm.object_name.value;

      var a = a.toLowerCase();

      alert(a);

 

소문자를 대문자로

ex)  var b = document.frm.object_name.value;

      var b = b.toUpperCase();

      alert(b);

+ Recent posts