从父级将脚本添加到 iframe 标头

发布于 2024-11-26 10:50:44 字数 385 浏览 1 评论 0原文

当我运行以下代码时:

created_script=document.createElement('script');
created_script.src='/javascripts/jquery-1.4.2.js';
created_script.type='text/javascript';
$(document.getElementById('fancybox-frame').contentWindow.document.head).append( created_script);

script 元素是在 iframe 父级的 head 标签中创建的,而不是在 iframe 的 head 标签中创建的。有谁知道如何修复此问题以附加到 iframe 的 head 标签中?

When I run the following code:

created_script=document.createElement('script');
created_script.src='/javascripts/jquery-1.4.2.js';
created_script.type='text/javascript';
$(document.getElementById('fancybox-frame').contentWindow.document.head).append( created_script);

The script element is created in the iframe's parent's head tag and not the iframe's head tag. Does anyone know how to fix this to be appended to the iframe's head tag?

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

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

发布评论

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

评论(1

吃不饱 2024-12-03 10:50:44

你可以用 jQuery 尝试一下,只要 iframe 域、协议和端口匹配,我就能成功执行此操作。否则,它将被视为访问不同 url 的不安全尝试。

$("#fancybox-frame").contents().find("head").append(created_script);

You can try this with jQuery, I was able to execute this successfully as long as the iframe domain, protocol, and port matches. Otherwise, it was treated as an unsafe attempt to access a different url.

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