使用 SimpleXML 获取“Form”具有“输入”的元素类型为“密码”的标签?

发布于 2024-10-19 13:39:33 字数 509 浏览 1 评论 0原文

你好 我有由许多表单组成的网页数据(html 转换为 xml),我想获取其中包含密码类型输入标签的表单(不需要直接子项)。考虑下面的示例,数据存储在变量 $html 中

<html>
<body>

<form>
<input type="text" name="foo" />
</form>

<form>
<table>
<tr> <input type="password" name="pass"/> </tr>
</table>
</form>

</body>
</html>

我尝试过

$loginForm  =  $html->xpath('//form//input[@type="password"]//../form'); 

但没有成功:(

谢谢。

Hi
I have webpage data (html converted into xml) consisting of many forms , I want to grab the form which have input tag inside it of type password ( not necessary direct children) . consider example below data stored inside variable $html

<html>
<body>

<form>
<input type="text" name="foo" />
</form>

<form>
<table>
<tr> <input type="password" name="pass"/> </tr>
</table>
</form>

</body>
</html>

I tried

$loginForm  =  $html->xpath('//form//input[@type="password"]//../form'); 

But didnt succeeded :(

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万劫不复 2024-10-26 13:39:33

试试这个 XPath:

//form[descendant::input[@type="password"]]

Try this XPath:

//form[descendant::input[@type="password"]]
罪歌 2024-10-26 13:39:33

另一种选择是

//form//input[@type="password"]/ancestor::form

Another option is

//form//input[@type="password"]/ancestor::form
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文