私は追跡目的で目に見えないiframeをページに追加しようとしています。 私は親ページからそのインラインフレームを制御することはできませんよ。ページに動的に追加されたiframeを制御できません
try
{
var frame = document.createElement("iframe");
frame.setAttribute("src", "http://example.com/frame.php");
frame.style.width = "0px";
frame.style.height = "0px";
frame.style.border = "0px";
frame.setAttribute("visibility", "hidden");
frame.setAttribute('id',"awesomeIframe");
frame.style.display = "none";
if(document.body != null)
{
document.body.appendChild(frame);
}
else
{
document.head.appendChild(frame);
}
}catch(e){}
どのように私は、iframe内に含まJSを変更することができます。 ここでは、私が行っているコードはありますか?
同じドメインですか? –