最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why can't I use map on the result of a querySelectorAll? - Stack Overflow

programmeradmin1浏览0评论

I recently needed to extract the value of several nodes from an HTML document. I got the nodes using querySelectorAll, which returns a list of the nodes that meet the criteria. I had used arr.map before, so I tried to do it like this (which did not work):

var elems = document.querySelectorAll('select option:checked');
values = elems.map(function(obj) {return obj.value});

When I read the documentation in MDN, I saw that I had to use something like this instead:

var elems = document.querySelectorAll('select option:checked');
var values = Array.prototype.map.call(elems, function(obj) {
  return obj.value;
});

My question is, if what I get from querySelectorAll is an array, why can't I use the first expression, like I would for any other array?

I recently needed to extract the value of several nodes from an HTML document. I got the nodes using querySelectorAll, which returns a list of the nodes that meet the criteria. I had used arr.map before, so I tried to do it like this (which did not work):

var elems = document.querySelectorAll('select option:checked');
values = elems.map(function(obj) {return obj.value});

When I read the documentation in MDN, I saw that I had to use something like this instead:

var elems = document.querySelectorAll('select option:checked');
var values = Array.prototype.map.call(elems, function(obj) {
  return obj.value;
});

My question is, if what I get from querySelectorAll is an array, why can't I use the first expression, like I would for any other array?

Share Improve this question asked Sep 2, 2016 at 20:24 Yamil AbugattasYamil Abugattas 4185 silver badges21 bronze badges 2
  • 5 querySelectorAll does not return array, it returns array-like-object. If you are referring docs, read it pletely... – Rayon Commented Sep 2, 2016 at 20:25
  • 2 Why is NodeList not an Array? – Rayon Commented Sep 2, 2016 at 20:27
Add a ment  | 

2 Answers 2

Reset to default 7

My question is, if what I get from querySelectorAll is an array, why can't I use the first expression, like I would for any other array?

querySelectorAll does not return an array, it returns a NodeList.

From MDN (emphasis mine):

Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors. The object returned is a NodeList.

NodeList does not have Array.prototype in its prototype chain, so it doesn't have the array methods.

As others pointed out, a node list (querySelectorAll) is not the same as an Array. With ES6 you can do this as a one liner with the spread operator (which converts to an array):

const checkedOptions = [...document.querySelectorAll('select option:checked')].map(option => option.value);
发布评论

评论列表(0)

  1. 暂无评论
ok 不同模板 switch ($forum['model']) { /*case '0': include _include(APP_PATH . 'view/htm/read.htm'); break;*/ default: include _include(theme_load('read', $fid)); break; } } break; case '10': // 主题外链 / thread external link http_location(htmlspecialchars_decode(trim($thread['description']))); break; case '11': // 单页 / single page $attachlist = array(); $imagelist = array(); $thread['filelist'] = array(); $threadlist = NULL; $thread['files'] > 0 and list($attachlist, $imagelist, $thread['filelist']) = well_attach_find_by_tid($tid); $data = data_read_cache($tid); empty($data) and message(-1, lang('data_malformation')); $tidlist = $forum['threads'] ? page_find_by_fid($fid, $page, $pagesize) : NULL; if ($tidlist) { $tidarr = arrlist_values($tidlist, 'tid'); $threadlist = well_thread_find($tidarr, $pagesize); // 按之前tidlist排序 $threadlist = array2_sort_key($threadlist, $tidlist, 'tid'); } $allowpost = forum_access_user($fid, $gid, 'allowpost'); $allowupdate = forum_access_mod($fid, $gid, 'allowupdate'); $allowdelete = forum_access_mod($fid, $gid, 'allowdelete'); $access = array('allowpost' => $allowpost, 'allowupdate' => $allowupdate, 'allowdelete' => $allowdelete); $header['title'] = $thread['subject']; $header['mobile_link'] = $thread['url']; $header['keywords'] = $thread['keyword'] ? $thread['keyword'] : $thread['subject']; $header['description'] = $thread['description'] ? $thread['description'] : $thread['brief']; $_SESSION['fid'] = $fid; if ($ajax) { empty($conf['api_on']) and message(0, lang('closed')); $apilist['header'] = $header; $apilist['extra'] = $extra; $apilist['access'] = $access; $apilist['thread'] = well_thread_safe_info($thread); $apilist['thread_data'] = $data; $apilist['forum'] = $forum; $apilist['imagelist'] = $imagelist; $apilist['filelist'] = $thread['filelist']; $apilist['threadlist'] = $threadlist; message(0, $apilist); } else { include _include(theme_load('single_page', $fid)); } break; default: message(-1, lang('data_malformation')); break; } ?>