我在 firefox DevTools 的控制台中使用以下代码从https://bookauthority.org/books/best-problem-solving-books中提取书名
代码 1
var selects=document.querySelectorAll("div.book-header-title a.book-title h2.main");
for (i = 0; i < selects.length; ++i) {
console.log (selects[i].innerText);
}
代码 2
var selects=document.querySelectorAll("div.book-header-title a.book-title h2.main");
console.log(selects)
即使下面的代码也不起作用
var selects=document.querySelectorAll("body");
console.log(selects)
它只说undefined。我能做些什么?
郎朗坤
相关分类