如果你的子页面是放在iframe里面的,在父窗口的页面可以使用下面的方法试试,这里使用jquery
function iframeElement(selector) {return $("#iframe").contents().find(selector);}
比如子页面有个ID为tip的元素,可以这样使用var $tip = iframeElement("#tip");返回的是jquery对象