ビューの下部といくつかのhtmlの後に行う場合:
jQuery(document).ready(function() {
tinyMCE.activeEditor.setContent("asdsad");
});
firefox でエラーが発生する
エラー: TypeError: tinyMCE.activeEditor が null です
関数に行を追加し、クリックイベントの後にアクティブにすると、コードが機能します。たとえば、
<input type="button" onclick="setcontent()" value="Set the content" >
<script>
function setcontent(){
tinyMCE.activeEditor.setContent("asdsad");
}
</script>
jQuery(document).ready の後に TinyMCE の読み込みが完了していないと思いますか? または私はここに何かが欠けていますか?