Convert lowercase letter to upper case in javascript

后端 未结 6 1779
温柔的废话
温柔的废话 2021-01-01 14:45

I have a code that will convert lower case letters to uppercase but it works only with IE and not in Crome or Firefox.

function ChangeToUpper()
  {         
         


        
6条回答
  •  轮回少年
    2021-01-01 15:31

    Have you tried this?

    var myString = "this is a String";
    alert(myString.toUpperCase()); // "THIS IS A STRING"
    alert(myString.toLowerCase()); // "this is a string"
    

    Thanks... Hope you like it.

提交回复
热议问题