0
- 我如何在jQuery的一個iFrame調用父一個jQuery功能?
這裏是代碼的iFrame的iFrame jQuery的調用父jQuery函數
<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>
這裏是jQuery的託管的iFrame
<script type="text/javascript">
$(document).ready(function(){
function WorkPlease()
{
$('html,body').animate({scrollTop: $("#iFrame").offset().top}, 5000);//
}
});
</script>
好吧,我能夠控制在一個iFrame從jQuery的父另一個DIV。這是不是訪問外部內容? –
–
在一個iFrame即代碼控制一個DIV在父。 –