1

这是我的页面:

<iframe src="/index/player/0-4" id="iframe" scrolling="no"></iframe>

我的 iframe 内容

<div id='outerdiv'>
<iframe src="" id="frameID" span="" scrolling="no" height=""></iframe>
</div>

现在我想通过按一个按钮在 jquery scr="" span="" 和高度的帮助下进行更改

我有这个代码:

<script>$("#button").click(function () { 
      $("#frameID").attr("src", "http://site.info");
});</script>
<script>$("#button").click(function(){
  $("#frameID").animate({
    height: "72px"
  }, 1500 ); 
});

</script>

但它仅在 iframe 与代码在同一页面上时才有效

4

1 回答 1

0

您必须在 iFrame 中找到控件

($("#iframe").contents().find("#frameID")).attr("src", "http://site.info");
于 2013-01-31T20:21:18.780 回答