在iframe中添加javascript代码。

时间:2014-01-14 12:46:24

标签: javascript jquery html iframe

如何为iframe的onload事件添加javascript代码。我需要我的代码不会出现在标题中,而是直接出现在iframe元素中。

`<script type="text/javascript">
$(document).ready(function(){
 $('#innerFrame').iframeHeight({
    debugMode: true,
    watcher: true
    });
});

</script>`<--!This is the script i want to add-->

1 个答案:

答案 0 :(得分:0)

使用以下代码:

$("#frmae_id").ready(function() { 
  // Write your frame onload code here
}

here之前提出这类问题。

根据您的问题更新,因为相同的orgin政策,所以不可能。请阅读之前已经提到的here