码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript手册 | JS Array 对象中的toLocaleString() 方法

时间:2020-07-12 10:40:46      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:string   javascrip   force   har   char   元素   xpl   nta   theme   

[

Array使用toLocaleString()数组转化为字符串。

句法:

array.toLocaleString();

返回值:

返回表示数组元素的字符串。

JavaScript版本:

ECMAScript 1?

JS Array 对象中的array.toLocaleString()方法浏览器的兼容性

方法 Chrome Inter Explorer Firefox Safari Opera
Array.toLocaleString() YES YES YES YES YES

js array使用toLocaleString()数组转化为字符串

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>js array使用toLocaleString()数组转化为字符串 - Break易站(breakyizhan.com)</title>
</head>
<body>
 
<script type="text/javascript">

var name = "breakyizhan"; 
var number = 567; 
  

var date = new Date(); 
 
var A = [ name, number, date ]; 
  
var string = A.toLocaleString(); 
  

document.write(string);
</script>

 
</body>
</html>


尝试一下 >>

]
转载请保留页面地址:https://www.breakyizhan.com/js/6852.html

JavaScript手册 | JS Array 对象中的toLocaleString() 方法

标签:string   javascrip   force   har   char   元素   xpl   nta   theme   

原文地址:https://www.cnblogs.com/breakyizhan/p/13287230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!