jquery中push()的用法(数组添加元素)
push定义和用法
push()方法可向数组的末尾添加一个或多个元素,并返回新的长度。
语法
arrayObject.push(newelement1,newelement2,....,newelementX)
参数描述
newelement1必需。要添加到数组的第一个元素。
newelement2可选。要添加到数组的第二个元素。
newelementX可选。可添加多个元素。
返回值
把指定的值添加到数组后的新长度。
说明
push()方法可把它的参数顺序添加到arrayObject的尾部。它直接修改arrayObject,而不是创建一个新的数组。push()方法和pop()方法使用数组提供的先进后出栈的功能。
提示和注释
注释:该方法会改变数组的长度。
提示:要想数组的开头添加一个或多个元素,请使用unshift()方法。
实例
在本例中,我们将创建一个数组,并通过添加一个元素来改变其长度:
vararr=newArray(3); arr[0]="George"; arr[1]="John"; arr[2]="Thomas"; document.write(arr+"")document.write(arr.push("James")+"")document.write(arr);
输出:
George,John,Thomas
4
George,John,Thomas,James
网上的一个用法:
$(function(){ varbuf=[]; buf.push('<scriptasyncsrc="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>'); buf.push('<insclass="adsbygoogle"style="display:inline-block;width:728px;height:90px"data-ad-client="ca-pub-88888888"data-ad-slot="8305246055"></ins>'); buf.push('<script>(adsbygoogle=window.adsbygoogle||[]).push({});</script>'); $('.footer-banner').html(buf.join(''));
注意:使用的时候需要先加载jquery.js