Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何直接在整页上加载 TinyMCE?
有一个整页按钮,但我不想点击整页...
任何的想法?
这可以使用设置配置参数/onInit-handler 轻松完成,并从那里触发整页命令
tinyMCE.init({ ... setup : function(ed) { ed.onInit.add(function(ed, evt) { // do the full page action here }); } });