使用TinyMCE时,Chrome无法滚动

时间:2013-03-28 10:31:34

标签: google-chrome scroll tinymce

在我的TinyMCE文本框上完成“init”后,使用chrome时窗口无法滚动。它冻结了,除非我调整窗口大小,否则什么也做不了。

有没有人有这个问题,如果有,你是怎么解决的?

它可以在所有其他浏览器中使用,我的chrome版本是25.0.1364.172

谢谢!

- 编辑 - 这是tinyMCE的init。 “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"
        });

1 个答案:

答案 0 :(得分:2)

如果你的网址末尾有一个#,那么放置了tinymce的DIV滚动条就会冻结。

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

您可以看到相关的TinymceStackOverflow主题。