- 如何在 iFrame 中获取 jQuery 以在父级中调用 jQuery 函数?
这是 iFrame 的代码
<script>
$(document).ready(function (){
$("#Hey").click(function ()
{
parent.WorkPlease(); // does not work
window.parent.WorkPlease(); // also does not work
// Both hosted on same domain
});
});
</script>
这是托管 iFrame 的父页面上的 jQuery
<script type="text/javascript">
$(document).ready(function(){
function WorkPlease()
{
$('html,body').animate({scrollTop: $("#iFrame").offset().top}, 5000);//
}
});
</script>