控制 iframe 中的文本对齐和浮动
我有一个宽度为 450 的 iframe,里面有文本,我想将此文本对齐到 iframe 的右侧。我无法访问 iframe 来更改它。
I have a iframe with a width of 450 with text inside and I want to align this text on the right hand side of the iframe. I don't have access to the iframe to change it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那你想做的事情恐怕就不可能了。 同源策略阻止对该 iFrame 的 DOM 的任何和所有访问。
您必须使用服务器端脚本来获取 iframe 的内容。
Then I'm afraid what you want to do is impossible. The Same Origin Policy prevents any and all access to the DOM of that iFrame.
You would have to use a server-side script to fetch the iframe's contents.
如果是 XS(跨站点),则无法执行此操作
。这只有在您有权访问 iframe 文件时才能实现。
You cant do this if it is XS (Cross-Site)
This could only be achieved if you had access to the iframe'd file.