通过onclick在另一个页面上运行iframe页面上的jquery脚本

时间:2014-01-08 13:47:06

标签: jquery html iframe

我有2个iframe的索引页面。在页面中的一个iframe中,我有一些链接:

<a href="home.html" target="content" onclick="run.slimmscroll(#anchor1);">Home</a>
<a href="home.html" target="content" onclick="run.slimmscroll(#anchor2);">Home</a>
<a href="home.html" target="content" onclick="run.slimmscroll(#anchor3);">Home</a>

home.html已加载到“内容”iframe中。现在我需要在home.html加载时执行Jquery脚本。这是脚本:

<SCRIPT type="text/javascript"> 
$(window).load(function() {             
$('#scroll').slimScroll({    
start: $('#anchor1')
  });    
 });
</SCRIPT>

我的想法是将home.html转换为#anchor1, 2, 3等等,通常在页面加载时进行平滑滚动,但我想从其他页面使用onclick()进行操作

希望你们能帮忙。

1 个答案:

答案 0 :(得分:0)

知道了。

onclick="window.parent.content.slimScroll();"

home.html上的语法是:

<SCRIPT type="text/javascript">              
$('#scroll').slimScroll({    
start: $('#anchor1')   
});
</SCRIPT>