Convert lowercase letter to upper case in javascript

后端 未结 6 1757
温柔的废话
温柔的废话 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:18

    You can simply use CSS and do text-transform:uppercase and on submit you run toUppercase(). Or you just submit as mixed and you capitalize letters on server side :)

提交回复
热议问题