0
私はこれを実行していますが、私はコンソールに問題タイトルのエラーを与え続けます。基本的に私はリンクからhref
値を読んでいると私は<ul>
HTML
<div id="link"><ul></ul></div>
のjQueryに
var $thirdColumnCells = $hiddenContentB.find('table.wikitable tr').find('td:nth-child(3) a').attr("href");
$thirdColumnCells.each(function(idx, cell) {
var valB = $(cell).text().match(/\d+/)[0];
valuesB.push($(cell).html());
$('#link').append('<li>'+ valB + '</li>');
});
は '$ thirdColumnCells'が文字列である.... –