我在#container里面有一个TinyMCE textarea
当我使用$(‘#container’).hide()然后$(‘#container’).show(),tinyMCE throws:
Cannot read property ‘selection’ of undefined
$('#container textarea').tinymce({ /* options */ });
我应该做些什么不同的事情?
解决方法
这里使用的正确命令是
// editor_id is the id of your textarea and // tinymce will use this id to uniquely identify this editor instance editor_id = $("#container textarea").attr('id'); tinymce.get(editor_id).hide();
让它再次可见使用
tinymce.get(editor_id).show();