我有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()
进行操作
希望你们能帮忙。
答案 0 :(得分:0)
知道了。
onclick="window.parent.content.slimScroll();"
home.html上的语法是:
<SCRIPT type="text/javascript">
$('#scroll').slimScroll({
start: $('#anchor1')
});
</SCRIPT>