2017-04-03 17 views
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> 

答えて

0

私はそれを得ました。ただ使用しなければならなかったparent.document.CKEDITOR.instancesの代わりに
parent.CKEDITOR.instancesの代わりにparent.document.CKEDITOR.instances

関連する問題