这次给大家带来如何使用jQuery实现合并/追加数组并去除重,使用jQuery实现合并/追加数组并去除重的注意事项有哪些,下面就是实战案例,一起来看一下。
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery不重复地追加数组元素</title> </head> <body> <script lanage="javaScript" src="jquery.js"></script> <script lanage="javaScript"> <!-- var arr=["tmp1","tmp2","tmp3","tmp4"]; var arr2=["tmp1","tmp1","tmp5"]; for(i=0,len=arr2.length;i<len;i++){ if($.inArray(arr2[i],arr)<0){ arr.push(arr2[i]); } } console.log(arr); --> </script> </body> </html>
运行结果:
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上是如何使用jQuery实现合并/追加数组并去除重的详细内容。更多信息请关注PHP中文网其他相关文章!