从外部源加载框架内的 Javascript 元素(Chrome 内容脚本)

发布于 2024-12-06 02:05:37 字数 665 浏览 0 评论 0原文

好的,那么在下面的示例中,我将如何更改 h2 的文本?我已经尝试了我能想到的一切,但似乎没有任何效果。我已经尝试了很多事情,将它们全部发布在这里是没有意义的,所以我希望有人可以发布如何做。该框架是从外部 url 加载的,我正在/将要使用 JQuery,因此请随意使用其中的任何内容。谢谢。

<html>
<head></head>
<frameset cols="100%">
    <frame src="http://loadingfrom.com/">
        <html>
             <head>...</head>
             <body>
                 <div><h2 id="idOfH2">Hello</h2></div>
                 <div></div>
                 <div></div>
                 <div></div>
             </body>
        </html>
</frameset>
</html>

Ok, so in the following example how would I go about changing the text of the h2 ? I have tried everything I can think of and nothing seems to work. I have tried so many things that it would be pointless to post them all here, so I am hoping someone can just post how. The frame is being loaded from an external url and I am/will be using JQuery so feel free to use anything from it. Thanks.

<html>
<head></head>
<frameset cols="100%">
    <frame src="http://loadingfrom.com/">
        <html>
             <head>...</head>
             <body>
                 <div><h2 id="idOfH2">Hello</h2></div>
                 <div></div>
                 <div></div>
                 <div></div>
             </body>
        </html>
</frameset>
</html>

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

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

发布评论

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

评论(1

说不完的你爱 2024-12-13 02:05:37

尝试将 id 属性添加到您的 H2 标记中,如下所示:

<h2 id="idOfH2">Hello</h2>

----- 编辑 -----

确保您已:

"all_frames": true

在 manifest.json 文件的 content_scripts 部分中进行设置。

Try adding the id attribute to your H2 tag like this:

<h2 id="idOfH2">Hello</h2>

----- Edit -----

Make sure you have:

"all_frames": true

set in the content_scripts section of the manifest.json file.

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