我有一个 iframe。我想要做的是从已在 iframe 中打开的文档中包含的 javascript 更改 iframe 的 src 和边距。
我已经尝试了以下但没有用 -
document.popiframe.document.body.innerHTML="blah";
document.getElementById( 'popiframe' ).setAttribute( 'src', '' );
$('.popiframe').attr('src', "about:blank");
我怎样才能做到这一点?