我有一个 iframe,它将使用以下脚本动态插入父页面(我无法控制此域)...
var _hf_iFrame = document.createElement("iframe");
_hf_iFrame.setAttribute("id", "_hf_iFrame");
_hf_iFrame.setAttribute("name", "_hf_iFrame");
_hf_iFrame.setAttribute("style", "height: 354px; width: 445px; border: 0; margin-left: -400px; top: 23%; position: fixed;");
document.body.appendChild(_hf_iFrame);
_hf_iFrame.setAttribute("src", "http://anotherdomain.com/frame.html");
我想从 iframe 本身更改 iframe 的 css 属性。有可能实现这一目标吗?我在 iframe 中使用 JQuery。
提前致谢。