gpt4 book ai didi

javascript - Aloha 编辑器不适用于 Opera,有时也不适用于 Chrome

转载 作者:行者123 更新时间:2023-11-28 02:43:54 26 4
gpt4 key购买 nike

我一直在使用 Aloha Editor 创建 example of a simple editor ,但我还没有成功让它在 Opera 中工作。菜单不会出现,文本区域不可编辑。

在所有其他浏览器中似乎工作正常,但有时 Chrome 需要刷新页面才能工作。

这是相关的 HTML 代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="//cdn.aloha-editor.org/latest/css/aloha.css" rel="stylesheet" media="screen" />
</head>
<body>
<textarea id="content"></textarea>
<script src="//cdn.aloha-editor.org/latest/lib/require.js"></script>
<script src="//cdn.aloha-editor.org/latest/lib/aloha.js" data-aloha-plugins="common/ui,common/format,common/table,common/list,common/link,common/block,common/undo,common/contenthandler,common/paste"></script>
<script src="notes.js"></script>
</body>
</html>

这是 javascript 代码(在 notes.js 内):

var Aloha = window.Aloha || ( window.Aloha = {} );
Aloha.settings = { sidebar: { disabled: true } };

Aloha.ready(function () {

Aloha.jQuery('#content').aloha();

});

最佳答案

在阅读 Inshallah 的评论后,我正在回答我自己的问题。

问题是 JavaScript 变量 AlohaAloha.settings 应该在包含 Aloha 之前设置。

HTML 代码

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="//cdn.aloha-editor.org/latest/css/aloha.css" rel="stylesheet" media="screen" />
</head>
<body>
<textarea id="content"></textarea>
<script src="//cdn.aloha-editor.org/latest/lib/require.js"></script>
<script>
var Aloha = window.Aloha || ( window.Aloha = {} );
Aloha.settings = { sidebar: { disabled: true } };
</script>
<script src="//cdn.aloha-editor.org/latest/lib/aloha.js" data-aloha-plugins="common/ui,common/format,common/table,common/list,common/link,common/block,common/undo,common/contenthandler,common/paste"></script>
<script src="notes.js"></script>
</body>
</html>

JavaScript 代码(在 notes.js 内)

Aloha.ready(function () {
Aloha.jQuery('#content').aloha();
});

关于javascript - Aloha 编辑器不适用于 Opera,有时也不适用于 Chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12222475/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com