定義和用法
把陣列轉換成本地字串。
語法
arrayObject.toLocaleString()
傳回值
arrayObject 的本機字串表示。
說明
先呼叫每個陣列元素的toLocaleString() 方法,然後使用地區特定的分隔符號把產生的字串連接起來,形成一個字串。
實例
<script type="text/javascript"> var arr = new Array(3) arr[0] = "George" arr[1] = "John" arr[2] = "Thomas" document.write(arr.toLocaleString()) </script>
輸出:
George, John, Thomas
此程式碼用來學習JavaScript的toLocaleString方法,使用JS的toLocaleString方法取得目前的電腦時間,並將結果:「目前本地系統時間為:”顯示在網頁的主體Body區域內。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312"> <title>使用toLocaleString获取本地时间</title> </head> <body background="temp.JPG"> <script language="javascript"> var now = new Date(); hours = now.getHours(); if (hours < 25) { document.write("<font size = 6pt face = 黑体 color = ff9900>"+"当前本地系统时间为:"+now.toLocaleString()+"</font>"); } </script> </body> </html>
以上是JavaScript把陣列轉換成本地字串的方法toLocaleString()的詳細內容。更多資訊請關注PHP中文網其他相關文章!