//通过window对象获取子iframe var _frame = window.frames[1] ; //获取第二个iframe(根据name获取使用window.frames[‘xxx‘]) if( $.browser.msie ){ //ie _frame = window.document.frames[1] ; } //获取iframe中的某个元素 $(‘#xxxid‘, _frame.document) ; //在iframe中获取父window对象 parent //=======
时间: 2024-10-11 13:49:06