在我的 TinyMCE 文本框上完成“初始化”后,使用 chrome 时窗口无法滚动。它冻结了,除非我调整窗口大小,否则什么也做不了。
有没有人遇到过这个问题,如果有,您是如何解决的?
它适用于所有其他浏览器,我的 chrome 版本是 25.0.1364.172
谢谢!
-- 编辑 -- 这是 tinyMCE 的初始化。“editor_selector”和“tinymce”是类。
tinyMCE.init({
mode: "specific_textareas",
editor_selector: "tinymce_wide",
encoding: "xml",
theme: "advanced",
theme_advanced_toolbar_location: "top",
theme_advanced_buttons1: "bold,italic,underline",
theme_advanced_buttons2: "cut,copy,paste,|,link,unlink",
theme_advanced_buttons3: "",
width: "918"
});
tinyMCE.init({
mode: "specific_textareas",
editor_selector: "tinymce",
encoding: "xml",
theme: "advanced",
theme_advanced_toolbar_location: "top",
theme_advanced_buttons1: "bold,italic,underline",
theme_advanced_buttons2: "cut,copy,paste,|,link,unlink",
theme_advanced_buttons3: "",
width: "705"
});