私はもう試した:
$(document).ready(function(){
$(parent.top).find('.IAgreeCheckBox:first').prop("checked", true);
});
無駄に。
私はもう試した:
$(document).ready(function(){
$(parent.top).find('.IAgreeCheckBox:first').prop("checked", true);
});
無駄に。
$('.IAgreeCheckBox:first', window.parent.document).prop('checked', true);
コンテキスト アプローチが機能しない場合は、次の方法を試してください。
parent.$("#wOnlineApplication_cbxIAgree").prop("checked", true);
これが、iframe ページ内にいるときに親要素を参照する方法です。