jQuery中关于.map使用详解
jQuery.map(array,callback)
将一个数组中的元素转换到另一个数组中。
作为参数的转换函数会为每个数组元素调用,而且会给这个转换函数传递一个表示被转换的元素作为参数。转换函数可以返回转换后的值、null(删除数组中的项目)或一个包含值的数组,并扩展至原始数组中。
--------------------------------------------------------------------------------
Translate all items in an array to another array of items. The translation function that is provided to this method is called for each item in the array and is passed one argument: The item to be translated. The function can then return the translated value, 'null' (to remove the item), or an array of values - which will be flattened into the full array.
返回值
Array
参数
array (Array) : 待转换数组。
callback (Function) : 为每个数组元素调用,而且会给这个转换函数传递一个表示被转换的元素作为参数。函数可返回任何值。另外,此函数可设置为一个字符串,当设置为字符串时,将视为“lambda-form”(缩写形式?),其中 a 代表数组元素。如“a * a”代表“function(a){ return a * a; }”。
示例
将原数组中每个元素加 4 转换为一个新数组。
jQuery 代码:
$.map( [0,1,2], function(n){ return n + 4; });
结果:
[4, 5, 6]
--------------------------------------------------------------------------------
原数组中大于 0 的元素加 1 ,否则删除。
jQuery 代码:
$.map( [0,1,2], function(n){ return n > 0 ? n + 1 : null; });
结果:
[2, 3]
--------------------------------------------------------------------------------
原数组中每个元素扩展为一个包含其本身和其值加 1 的数组,并转换为一个新数组。
jQuery 代码:
$.map( [0,1,2], function(n){ return [ n, n + 1 ]; });
结果:
[0, 1, 1, 2, 2, 3]
过滤数组中小于 0 的元素。
HTML 代码:
<p>First</p><p>Second</p><p>Third</p><p>Fourth</p>
jQuery 代码:
var arr = jQuery.makeArray(document.getElementsByTagName_r("p")); arr.reverse(); // 使用数组翻转函数
结果:
Fourth Third Second First
过滤数组中小于 0 的元素。
HTML 代码:
<p>First</p><p>Second</p><p>Third</p><p>Fourth</p>
jQuery 代码:
var arr = jQuery.makeArray(document.getElementsByTagName_r("p")); arr.reverse(); // 使用数组翻转函数
结果:
Fourth Third Second First
过滤数组中小于 0 的元素。
HTML 代码:
<p>First</p><p>Second</p><p>Third</p><p>Fourth</p>
jQuery 代码:
var arr = jQuery.makeArray(document.getElementsByTagName_r("p")); arr.reverse(); // 使用数组翻转函数
结果:
Fourth Third Second First
附:过滤数组中小于 0 的元素。
HTML 代码:
<p>First</p><p>Second</p><p>Third</p><p>Fourth</p>
jQuery 代码:
var arr = jQuery.makeArray(document.getElementsByTagName_r("p")); arr.reverse(); // 使用数组翻转函数
结果:
Fourth Third Second First
以上就是jQuery中关于.map使用详解的详细内容,更多请关注其它相关文章!
推荐阅读
-
详解Django中的form库的使用
-
基于Android中Webview使用自定义的javascript进行回调的问题详解
-
在android开发中尽量不要使用中文路径的问题详解
-
解析Android中实现滑动翻页之ViewFlipper的使用详解
-
详解如何使用webpack打包多页jquery项目
-
Python实现类似jQuery使用中的链式调用的示例
-
详解JavaScript原生封装ajax请求和Jquery中的ajax请求
-
详解关于Android Studio中安装和gradle的一些坑
-
Java中JSON处理工具类使用详解
-
Spring中property-placeholder的使用与解析详解