wangEditor/examples/todo.html

44 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>wangEditor example</title>
</head>
<body>
<p>
wangEditor demo
</p>
<div id="div1">
<ul class="w-e-todo">
<li><span contenteditable="false"><input type="checkbox"/></span>写代码</li>
</ul>
<ul class="w-e-todo">
<li><span contenteditable="false"><input type="checkbox"/></span>睡觉</li>
</ul>
<ul class="w-e-todo">
<li><span contenteditable="false"><input type="checkbox"/></span>打豆豆</li>
</ul>
</div>
<script src="../dist/wangEditor.js"></script>
<script>
// 改为使用var声明才能在window对象上获取到编辑器实例方便e2e测试
var E = window.wangEditor
var editor = new E('#div1')
editor.config.onchange = function (newHtml) {
console.log('onchange', newHtml)
}
editor.config.onblur = function (newHtml) {
console.log('onblur', newHtml)
}
editor.create()
</script>
</body>
</html>