我正在尝试使用 tinymce (4.0b3) 并且 tinymce.js 有以下导致异常的代码行。(线路:27888)
if (window.localStorage) {
return localStorage;
}
当我使用 Firefox 从 localhost 请求我的 html 页面 (http://localhost/editor.html) 时,我收到一个异常提示:SecurityError: the operation is insecure。它适用于 IE 和 Chrome。
当我在我的网站上部署页面并请求像 (http://www.mydomain.com/editor.html) 这样的页面时,它适用于所有这三种浏览器 Firefox、IE 和 Chrome
Firefox 在本地主机上给出的 SecurityError 可能是什么原因?可能是测试版引起的错误?