3

在我的 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"
        });
4

1 回答 1

2

如果您的 URL 末尾有 #,则放置 tinymce 的 DIV 的滚动条将冻结。

我在chrome浏览器中遇到了这个问题。所有其他浏览器都没有问题。

你可以看到相关的TinymceStackOverflow线程。

于 2013-05-09T05:57:05.857 回答