我试过了:
$(document).ready(function(){
$(parent.top).find('.IAgreeCheckBox:first').prop("checked", true);
});
无济于事。
答案 0 :(得分:5)
$('.IAgreeCheckBox:first', window.parent.document).prop('checked', true);
答案 1 :(得分:3)
答案 2 :(得分:0)
如果上下文方法不起作用,请尝试以下方法:
parent.$("#wOnlineApplication_cbxIAgree").prop("checked", true);
当我在iframe页面中时,这就是我引用父元素的方式。