鉴于这种:
<a href="1">1</a>
<a href="2">2</a>
这是一个返回一组 href 值的函数:
e = $('a').map(function(v) { return $(this).attr('href'); });
console.log(e);
但它给
["1", "2", prevObject: x.fn.x.init[2], context: document, jquery: "1.10.2", constructor: function, init: function…]
我怎样才能修改它只返回一个原始数组[“1”,“2”]?