Posted in Javascript onApril 23, 2014
jQuery.map( array, callback(elementOfArray, indexInArray) )
Returns: Array
感觉jquery的map方法非常好用,特向大家分享下。
方法作用:将数组或单个对象,替换为新的内容。
应用实例:获取一组checkbox的值,以英文逗号分隔,进行拼接。
<html> <head> <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1.min.js"></script> <script> $(function(){ $("input").click(function(){ var str = $(":checked").map(function(){ return this.value; }).get().join(",") $("span").html(str); }) }) </script> </head> <body> <input type="checkbox" value="a"/>a <input type="checkbox" value="b"/>b <input type="checkbox" value="c"/>c <br/> 结果展示:<span/> </body> </html>
对于CSDN的代码编辑,实在不敢恭维,我在jsFiddle创建了上述例子,附链接:http://jsfiddle.net/dV8eh/。
jquery map方法使用示例
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@