从父级将脚本添加到 iframe 标头
当我运行以下代码时:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以用 jQuery 尝试一下,只要 iframe 域、协议和端口匹配,我就能成功执行此操作。否则,它将被视为访问不同 url 的不安全尝试。
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.