JS数组方法join()用法实例分析
程序员文章站
2022-06-22 14:02:29
本文实例讲述了js数组方法join()用法。分享给大家供大家参考,具体如下:
join()方法
定义和用法:
join() 方法用于把数组中的所有元素放入一个字符串...
本文实例讲述了js数组方法join()用法。分享给大家供大家参考,具体如下:
join()方法
- 定义和用法:
join() 方法用于把数组中的所有元素放入一个字符串。
元素是通过指定的分隔符进行分隔的。 - 语法:arrayobject.join(separator)
- 参数:可选,指定要使用的分隔符。
注:不给join()方法传入任何值,或者给它传入undefined,则使用逗号作为分隔符。
ie7及更早版本会错误的使用字符串“undefined”作为分隔符。
数组中的某一项是null或undefined,那么该值在join()、tolocalestring()、tostring()和valueof()方法返回的结果中以空字符串表示。 - 返回值:
返回包含所有数组项的字符串。
代码如下:
array.prototype.copyjoin = function() { var string = ''; for(var i = 0; i < this.length; i++) { // 将数组中各项值为null 或undefined的项改为空字符串。 if(this[i] == null || this[i] == undefined) { this[i] = ''; } // 对数组进行操作 if(arguments.length == 1 && arguments[0] != undefined) { //指定使用的分隔符 string += (i < this.length - 1) ? this[i] + arguments[0] : this[i]; } else { // 默认使用的分隔符————逗号 // if(i < this.length - 1) { // string += this[i] + ','; // } // else { // string += this[i]; // } string += (i < this.length - 1) ? this[i] + ',' : this[i]; } } return string; } // 不传任何值或者传入undefined var arr = [1, 2, 3, 4, 5, 6]; console.log(arr.copyjoin()); // 1,2,3,4,5,6 console.log(arr.copyjoin().length); // 11 console.log(arr.copyjoin(undefined)); // 1,2,3,4,5,6 console.log(arr.copyjoin(undefined).length); // 11 // 传入参数 console.log(arr.copyjoin('||')); // 1||2||3||4||5||6 console.log(arr.copyjoin('||').length); // 16 // 数组中的某一项是null或undefined var arr2 = [1, undefined, 2, undefined, 3, 4, 5, 6, 7, null, 8, null, 9]; console.log(arr2.copyjoin()); // 1,,2,,3,4,5,6,7,,8,,9 console.log(arr2.copyjoin().length); // 21 console.log(arr2.copyjoin(undefined)); // 1,,2,,3,4,5,6,7,,8,,9 console.log(arr2.copyjoin(undefined).length); // 21
运行结果:
以上在ie8+ join()方法一样,但是在ie7及更早版本(copyjoin()方法不存在):
arr.join(undefined)); // 1undefined2undefined3undefined4undefined5undefined6 arr.join(undefined).length); // 51 arr2.join(undefined)); // 1undefinedundefined2undefinedundefined3undefined4undefined5undefined6undefined7undefinedundefined8undefinedundefined9 arr2.join(undefined).length); // 117
感兴趣的朋友可以使用在线html/css/javascript代码运行工具:http://tools.jb51.net/code/htmljsrun测试上述代码运行效果。
推荐阅读
-
js中getter和setter用法实例分析
-
JavaScript数组、json对象、eval()函数用法实例分析
-
CI框架数据库查询之join用法分析_php实例
-
js关于数组的( push、pop、unshift、shift、splice、slice、concat、 join/split)的用法
-
JQuery中Text方法用法实例分析_jquery
-
PHP数组函数array_multisort()用法实例分析
-
JS拖拽排序插件Sortable.js用法实例分析
-
js核心基础之构造函数constructor用法实例分析
-
python中列表元素连接方法join用法实例
-
Python中的对象,方法,类,实例,函数用法分析