html中 子页面如何访问父页面的对象

假设父页面有个


在子页面写$("#father",parent.document)就可以获取div id为father的父对象
$("#father",parent.document).empt()清空div id为father下的所有内容。

parent.location.reload() 重新加载父页面

在父页面 获取iframe子页面的元素
首先父页面会有
子页面中有

在父页面写$(window.frames["framename"].document).find("#son")就能够获取子页面对象了([“framename”]中括号里就是父页面中的name)

你可能感兴趣的:(html中 子页面如何访问父页面的对象)