mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-07 09:46:38 +00:00
feat(templates): 新增绿色主题模版,并设置为默认模版
和文档站点 docs.xxyopen.com 风格保持一致
This commit is contained in:
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>wangEditor paste test</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>wangEditor paste test</p>
|
||||
<div id="div1">
|
||||
<p>欢迎使用 wangEditor 富文本编辑器</p>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="/wangEditor.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
var E = window.wangEditor
|
||||
var editor = new E('#div1')
|
||||
// editor.customConfig.pasteFilterStyle = false
|
||||
editor.customConfig.pasteTextHandle = function (content) {
|
||||
console.log(content)
|
||||
return content
|
||||
}
|
||||
editor.create()
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user