TinyMCE - 在 Chrome 中加载 TinyMCE 后更改焦点

发布于 2024-12-13 01:35:00 字数 165 浏览 3 评论 0原文

当在 URL 中使用 # 时,我发现 Chrome 中出现了非常奇怪的问题。如果 # 不存在 - 没关系,但是当我设置 #something - 页面已加载时,tinyMCE 仍在加载(焦点位于顶部),完成后,文本区域更改为富文本编辑器,然后焦点更改为中间页。您对如何修复它有什么建议吗?

谢谢 :)

I found very strange problem in Chrome when using # in URL. If # doesn't exist - it's Ok, but when I set #something - page is loaded, tinyMCE is still loading (focus is on the top) and after complete and textarea changed to rich text editor then focus is changed to the middle of page. DO you have any suggestions how to fix it?

Thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

埋葬我深情 2024-12-20 01:35:00

这应该可以解决问题:

$(document).ready(){
    document.location.href = "#"; 
};

另一次尝试:将其放入您的tinymce init函数中

  setup : function(ed) {
    ed.onInit.add(function(ed, evt) {
        document.location.href = "#"; 
    });
  },

This should do the trick:

$(document).ready(){
    document.location.href = "#"; 
};

Another try: Put this in your tinymce init function

  setup : function(ed) {
    ed.onInit.add(function(ed, evt) {
        document.location.href = "#"; 
    });
  },
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文