1)在iframe中查找父页面元素的方法:$('#id', window.parent.document) 2)在iframe中调用父页面中定义的方法和变量:parent.methodparent.value 3)实例 1.父页面 复制代码 代码如下: <BR> var hello = 'hello';<BR> function getHelloWorld() {<BR> alert('hello world');<BR> }<BR> default.aspx 2.子页面 复制代码 代码如下: <BR> $(function() {<BR> //在iframe中查找父页面元素<BR> alert($('#default', window.parent.document).html());<BR> //在iframe中调用父页面中定义的方法<BR> parent.getHelloWorld();<BR> //在iframe中调用父页面中定义的变量<BR> alert(parent.hello);<BR> });<BR> IFrame.aspx