Internet Explorer说在加载asp和tinymce相关的文本编辑器时由于长时间运行的脚本而没有响应

问题描述 投票:1回答:2

Internet Explorer说由于长时间运行脚本而没有响应,因为加载基于episerver的asp web应用程序和加载内容相关的tinymce作为文本编辑器。所以如何摆脱它。有时IE崩溃。位置是当tinyMCE调用来应用它到文本区域。

function addTinyMCE(){
$('textarea').tinymce({  
  script_url:'tiny_mce.js',
  theme:'advanced',
  mode:'none',
});
  }

var config={
  autoOpen:true,
  open:addTinyMCE //HERE IT TAKES THE NOT RESPONDING DUE TO A LONG RUNNING SCRIPT
}

所以需要解决这个问题,因为我需要将编辑器用作tinyMCE

asp.net tinymce internet-explorer-11 episerver
2个回答
5
投票

Enable Browser Link

在Visual Studio 2013工具栏中,“浏览方式”旁边的“刷新”按钮:

取消选中启用浏览器链接


0
投票

配置并随EPiServer 7.5一起提供的TinyMCE版本与IE11不兼容。您需要升级到EPiServer 8以获得兼容版本。

© www.soinside.com 2019 - 2024. All rights reserved.