0
親テンプレートにCKEditorインスタンスがあり、onclickの後にiframeからそのテキスト領域にデータを挿入したいと思います。私はそれをどうやってやりますか?これまでの私のコードですが、何が間違っていますか?iframeから親ウィンドウのCKEditorインスタンスにアクセスするにはどうすればよいですか?
<br><input type="button" id="change_text" value="Change Text"` onclick="myFunction()">
<script>
function myFunction() {
parent.document.body.style.backgroundColor = "red"; //This line works, setting parent page background to red
parent.document.CKEDITOR.instances['id_body'].setData($('input:radio[name=temp_name]:checked').val()); //Radio button value from iframe page. This line does not work
}
</script>