Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
227 views
in Technique[技术] by (71.8m points)

javascript - using queryselector to get textContent from td tags without class names

I am trying to create a datascraper using node.

Here is a sample html code for an item that I am trying to scrape:

<tr class="cool">
<td>Todd</td>
<td>Bob eats shoes <br/><a href="/cool/donkey" title="fluffy" class="stack">[Stack]</a>
</tr>

Here is some code that I am using to extract:

cars.forEach(carCard=> {
      const carCool = {
        number: carCard.querySelector('?').textContent,
        date: carCard.querySelector('?').textContent,
      };
    }); 

I was wondering if there was anyway I could get the text of 'Todd' and [Stack] using this query selector. I do not know what I would need to put in place of the question marks. If not is there a different method I can use to accomplish this?

Please help.

question from:https://stackoverflow.com/questions/65849062/using-queryselector-to-get-textcontent-from-td-tags-without-class-names

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You could do the following:

// To get all the td fields
const tds = document.querySelectorAll('td');
// to get the content of the td fields
tds.forEach(td => {
  console.log(td.textContent);
})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...