如何在iframe的$(文档).ready中检查父框架中的复选框?

时间:2012-06-27 22:43:24

标签: javascript jquery iframe

我试过了:

$(document).ready(function(){
    $(parent.top).find('.IAgreeCheckBox:first').prop("checked", true);  
});

无济于事。

3 个答案:

答案 0 :(得分:5)

$('.IAgreeCheckBox:first', window.parent.document).prop('checked', true);

答案 1 :(得分:3)

您需要document对象,而不是window

$(parent.document).find('.IAgreeCheckBox:first')

Here's a demo.

答案 2 :(得分:0)

如果上下文方法不起作用,请尝试以下方法:

parent.$("#wOnlineApplication_cbxIAgree").prop("checked", true);

当我在iframe页面中时,这就是我引用父元素的方式。