JavaScript toUpperCase方法
toUpperCase方法用於把(英文)字符串轉換為大寫,並返回轉換後的字符串。其語法如下:
復制代碼 代碼如下:
str_object.toUpperCase()
toUpperCase方法實例
復制代碼 代碼如下:
<script language="JavaScript">
var str = "AaBbCc";
document.write( str.toUpperCase() );
</script>
運行該例子,輸出:
復制代碼 代碼如下:
AABBCC
toLocaleUpperCase方法
toLocaleUpperCase方法 toUpperCase基本一樣,toLocaleUpperCase按照本地方式把字符串轉換為大寫。只有幾種語言(如土耳其語)具有地方特有的大小寫映射。