gpt4 book ai didi

javascript - CKeditor 如何与 Bower 一起使用

转载 作者:行者123 更新时间:2023-11-30 15:56:13 25 4
gpt4 key购买 nike

我正在尝试制作一些 html 富文本编辑器。我已经从 Bower 安装了 CKeditor,就像在 CKeditor 的文档中一样:

{
"name": "my-project",
"dependencies": {
"ckeditor": "4"
}
}

但我不知道如何使用它,在文档中有一个示例展示了如何从普通安装中使用它,而不是从 Bower 中使用它:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A Simple Page with CKEditor</title>
<!-- Make sure the path to CKEditor is correct. -->
<script src="../ckeditor.js"></script>
</head>
<body>
<form>
<textarea name="editor1" id="editor1" rows="10" cols="80">
This is my textarea to be replaced with CKEditor.
</textarea>
<script>
// Replace the <textarea id="editor1"> with a CKEditor
// instance, using default configuration.
CKEDITOR.replace( 'editor1' );
</script>
</form>
</body>
</html>

你能帮助我并展示如何在我的项目中没有这个 ckeditor.js 的情况下使用它吗?

最佳答案

无论 bower.json 文件所在的位置,您都会有一个“bower_components”文件夹。向下钻取并找到您想要的 ckeditor.js 文件,然后将您的 html 中的路径设置为此路径。

它看起来像这样:

<script src="../bower_components/ckeditor/ckeditor.js"></script>

关于javascript - CKeditor 如何与 Bower 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38489613/

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