JS操作iframe父级子级元素,jquery自动点击iframe里按钮
在父窗口中操作 选中iframe中的id
$(window.frames["ifm"].document).find("#id").attr("value",$("#id").val());
在iframe中操作 选中父窗口中的所有单选钮
$(window.parent.document).find("input[@type='radio']").attr("checked","true");
$("#父级某id",parent.document).trigger("click");//获取iframe外层标签元素,并自动触发点击事件
HTML
<iframe id="ifm" src="https://mee" frameborder="0" width="100%" height="100%" allowfullscreen="true" allowtransparency="true" scrolling="no"> </iframe>