如图,可以编写,但是不知道为什末使用 backspace 删除不了!看了一下午不知道问题出在哪
HTML 中代码:
<div id="vditor" class="vditor" style="z-index: 999;"></div>
JS 部分的代码如下:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vditor/dist/index.css" />
<script src="https://cdn.jsdelivr.net/npm/vditor/dist/index.min.js"></script>
<script>
var myeditor = null;
$(document).ready(function() {
// 初始化vditor
initVditor();
});
function initVditor(){
myeditor = new Vditor(
"vditor",
{
height: 500,
outline: {
enable: false
},
cache: {
enable: false
},
resize: {
enable: true,
position: "bottom"
},
cdn: "/js/vditor",
toolbar: [
"headings", "bold", "italic", "strike", "link", "|",
"list", "ordered-list", "outdent", "indent", "|",
"quote", "line", "code", "inline-code", "|",
"upload", "|",
"undo", "redo", "|",
"fullscreen", "edit-mode", "outline",
{
name: "more",
toolbar: [
"both",
"code-theme",
"content-theme",
"export",
"preview",
"devtools"
]
}
],
// 初始化的内容
value: "mkcontent",
})
}
<script>
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于