DOM方法:父窗口操作IFRAME:window.frames["iframeSon"].document IFRAME操作父窗口: window.parent.document jquery方法: 在父窗口中操作 選中IFRAME中的所有輸入框: $(window.frames["iframeSon"].document).find(":text"); 在IFRAME中操作 選中父窗口中的所有輸入框:$(window.parent.document).find(":text"); iframe框架的HTML:<iframe src="test.html" id="iframeSon" width="700″ height="300″ frameborder="0″ scrolli ng="auto"></iframe> 1.在父窗口中操作 選中IFRAME中的所有單選鈕
$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true"); 2.在IFRAME中操作 選中父窗口中的所有單選鈕 $(window.parent.document).find("input[@type='radio']").attr("checked","true"); |
|