操作-JavaScript 获取车
//取值的两种方法
\(('td[class="td2"][style="word-break:break-all;"]').text(); #不知道为什么取不到 ,可能是word-break
方法1
\)('td[class="td2"]').text(); // 或者 \(("td").text();
方法2
\)("td").each(function () {
if (\((this).text().startsWith("CQY")){
console.log(\)(this).text())
}
});