gpt4 book ai didi

javascript - 如何获取没有 id 的 iframe 内 div 类中的文本?

转载 作者:行者123 更新时间:2023-12-01 03:11:34 26 4
gpt4 key购买 nike

我正在尝试编写一个 tampermonkey 脚本,从以下 html 页面中提取网站:

<html>
<head></head>
<body>
<iframe src="http://some-url.com/ll" title="test" name="ws_block" frameborder="0" scrolling="no" style="border:0px; width:100%; height: 320px;">
<html>
<head>
<!-- A particular character set can be specified by assigning "charset" -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Title</title>
<link rel="stylesheet" href="/en/Custom/blockStyle.css" type="text/css">
</head>
<body>
<div class="wrapper">
<div id="logo"><img src="/banner.gif" alt="[ORG]" border="0"></div>
<div class="block-body">
<div class="textLine">
<div class="ws-label label" data-strid="url"><script> ws.print("url"); </script>Address:</div>
<div class="text">https://www.my_website.com/</div>
</div>
<div class="textLine">
<div class="ws-label label" data-strid="category"><script> ws.print("category"); </script>Category:</div>
<div class="text">My-Website</div>
</div>
</div>
</div>
</body>
</html>
</iframe>
</body>
</html>

我正在尝试提取我的网站链接:
https://www.my_website.com/

最佳答案

window 对象有一个 frames 数组,其中包含页面中包含的所有 iframe,因此您可以迭代它并尝试获取内容。

如果您只有一个 iframe,那么 window.frames[0].getElementsByClassName(classname) 就可以了。

请查看其文档:MDN

关于javascript - 如何获取没有 id 的 iframe 内 div 类中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45803689/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com