doupeng3501 2016-10-29 19:01
浏览 20
已采纳

使用rel值获取href内容 - getElementsByTagName - php

I have in my page one html like this:

<li class=category><a href="#" rel="category name">WHAT I WANT</a></li>
<li class=name><a href="#" rel="name">name</a></li>
<li class=date><a href="#" rel="date">date</a></li>

I need to get the WHAT I WANT value.

So I tried:

$linkss = $d->getElementsByTagName('a');
$cat = $linkss->item(0)->getAttribute('category name');

but it is not working... Any ideas why? How can I get just the What I want inside the href rel category name?

  • 写回答

2条回答 默认 最新

  • dragon202076 2016-10-29 19:15
    关注

    The attribute is rel, not category name; category name is the value of the attribute. You need to varify the attribute matches then output the nodeValue when you have a match.

    $linkss = $d->getElementsByTagName('a');
    foreach($linkss as $link) {
       if($link->getAttribute('rel') == 'category name') {
            echo $link->nodeValue;
       }
    }
    

    Demo: https://eval.in/668733

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境
  • ¥30 关于#java#的问题,请各位专家解答!