标签:div color 期望 nod 使用 style asc 返回 javascrip
伪数组(类数组):无法直接调用数组方法或期望length属性有什么特殊的行为,但仍可以对真正数组遍历方法来遍历它们。典型的是函数的argument参数,还有像调用getElementsByTagName,document.childNodes之类的,它们都返回NodeList对象都属于伪数组。可以使用Array.prototype.slice.call(fakeArray)将数组转化为真正的Array对象。
我们要给每个log方法添加一个"(app)"前缀,比如‘hello world!‘ ->‘(app)hello world!‘。方法如下:
function log() { var args = Array.prototype.slice.call(arguments) args.unshift(‘(app)‘) console.log.apply(console, args) } log(‘Hello World‘)
在Javascript中什么是伪数组?如何将伪数组转化为标准数组?
标签:div color 期望 nod 使用 style asc 返回 javascrip
原文地址:http://www.cnblogs.com/samsara-yx/p/7905852.html