0

我想从网站中提取数据这样的数据结构

<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> , &nbsp;&nbsp;&nbsp;&nbsp;<strong>
                    <a href="index.php?name=News&file=article&topic=3&sid=1508" class="nav-white">Title </a></strong> , &nbsp;&nbsp;&nbsp;&nbsp;<strong>
                    <a href="index.php?name=News&file=article&topic=3&sid=1502" class="nav-white">Title</a></strong> , &nbsp;&nbsp;&nbsp;&nbsp;<strong>
                    <a href="index.php?name=News&file=article&topic=3&sid=1501" class="nav-white">Title</a></strong> , &nbsp;&nbsp;&nbsp;&nbsp;<strong>
                    <a href="index.php?name=News&file=article&topic=3&sid=1497" class="nav-white">Title</a></strong> , &nbsp;&nbsp;&nbsp;&nbsp;</marquee></span></td>

我的问题是我可以得到<a></a>标签之间的链接标题将它们放在一个列表中以构建一个 android web 应用程序

4

1 回答 1

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 );
});

您可以创建txtlink变量数组,以便您可以根据需要在另一个函数中使用它们。

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>。在您发布的代码中,您将其反转。

于 2013-04-05T19:38:05.073 回答