热门IT资讯网

jquery 操作iframe

发表于:2024-11-28 作者:热门IT资讯网编辑
编辑最后更新 2024年11月28日,一.在父窗口中操作 IFRAME1.在父窗口中操作 选中IFRAME的所有单选钮$(window.frames["iframe1"].document).find("input[@type='radi

一.在父窗口中操作 IFRAME

1.在父窗口中操作 选中IFRAME的所有单选钮

$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true");

2.在父窗口中操作 选中IFRAME的id

$(window.frames["iframe2"].document).find("#x_orgname").attr("value",$("#x_orgname").val());

二.在IFRAME中操作 选中父窗口中的所有单选钮

1.在IFRAME中操作 选中父窗口中的所有单选钮

$(window.parent.document).find("input[@type='radio']").attr("checked","true");

2.在父窗口中操作 选中IFRAME的id

$(window.parent.document).find("#x_orgname").attr("value",$("#x_orgname").val());

0