我想从网站中提取数据结构中的数据
<td class="text-anouncments"><span class="nav-white"><marquee onmouseover=this.stop() onmouseout=this.start() behavior="scroll" width="100%" direction="left" scrollamount="3" scrolldelay="3" ><strong>
<a href="index.php?name=News&file=article&topic=3&sid=1510" class="nav-white">Title</a></strong> , <strong>
<a href="index.php?name=News&file=article&topic=3&sid=1508" class="nav-white">Title </a></strong> , <strong>
<a href="index.php?name=News&file=article&topic=3&sid=1502" class="nav-white">Title</a></strong> , <strong>
<a href="index.php?name=News&file=article&topic=3&sid=1501" class="nav-white">Title</a></strong> , <strong>
<a href="index.php?name=News&file=article&topic=3&sid=1497" class="nav-white">Title</a></strong> , </marquee></span></td>
我的问题是,我可以在<a></a>
标记之间获取链接标题,将它们放入列表中以构建一个Android网络应用程序
答案 0 :(得分:0)
使用下面的示例代码,您可以获得<a>
代码之间的文字,例如Title
如果您想要每个链接的实际链接,那么它将存储在link
变量中,在您的示例中为index.php?name=News&file=article&topic=3&sid=1510
等。
$('.nav-white').each(function() {
var txt = $(this).text(); //the text between the <a> tags
var link = $(this).attr('href'); //the link that each one points to
//print them to the console just to see that it actually works
console.log(txt);
console.log(link );
});
您可以制作txt
和link
变量数组,以便在需要时可以在其他函数中使用它们。
var texts = new Array();
var links = new Array();
$('.nav-white').each(function() {
texts.push( $(this).text() ); //the text between the <a> tags
links.push( $(this).attr('href') ); //the link that each one points to
});
此外,您输入了错误strong
属性。它是<strong>
一些文字</strong>
。在您发布的代码中,您将其颠倒过来。