//父Iframe访问子Iframe中的元素 $(window.frames[2].document.body).find(‘#strTaketime‘).val() $(window.frames[‘f‘].document.body).find(‘#strTaketime‘).val() //子Iframe中访问父Iframe中的元素 //top 为window的属性,代表最顶层的先辈窗口 $(top.document.body).find(‘#strTaketime‘).val()
原文地址:http://ccdebug.blog.51cto.com/4350056/1430392