toUpperCase() 方法用于把字符串转换为大写。
所有主要浏览器都支持 toUpperCase() 方法
把字符串转换为大写:
<script> var str="Hello world!"; document.write(str.toUpperCase()); </script>