标签:style color io java ar sp 代码 on c
访问iframe
JavaScript代码
document.getElementById(‘koyoz‘).contentWindow.document.getElementById(‘test‘).style.color=‘red‘
parent.document.getElementById(‘id‘)
jquery
$("#koyoz").contents().find("#test").css(‘color‘,‘red‘);
1.在父窗口中操作 选中IFRAME中的所有单选钮
$("#objid",document.frames(‘iframename‘).document)
$(window.frames["iframe1"].document).find("input[@type=‘radio‘]").attr("checked","true");
2.在IFRAME中操作 选中父窗口中的所有单选钮
$(‘#objId‘, parent.document);
$(window.parent.document).find("input[@type=‘radio‘]").attr("checked","true");
标签:style color io java ar sp 代码 on c
原文地址:http://www.cnblogs.com/zodiacblog/p/3981254.html