44 lines
916 B
HTML
44 lines
916 B
HTML
<!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>
|
|
<style>
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<p>
|
|
wangEditor demo
|
|
</p>
|
|
<button onclick="end()">禁用api</button>
|
|
<button onclick="start()">启用api</button>
|
|
<div id="div1">
|
|
<p>欢迎使用 <b>wangEditor</b> 富文本编辑器</p>
|
|
<p>
|
|
<img src="http://www.wangeditor.com/imgs/logo.jpeg"/>
|
|
</p>
|
|
</div>
|
|
|
|
<script src="../dist/wangEditor.js"></script>
|
|
<script>
|
|
const E = window.wangEditor
|
|
const editor = new E('#div1');
|
|
|
|
editor.config.showFullScreen = true
|
|
editor.create()
|
|
|
|
function end(){
|
|
editor.disable();
|
|
}
|
|
|
|
function start(){
|
|
editor.enable();
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |