This commit is contained in:
wangjinlei
2023-05-18 09:42:12 +08:00
commit 6e7ee3dd44
1214 changed files with 103535 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>simditor</title>
<link rel="stylesheet" type="text/css" href="styles/simditor.css" />
<script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script>
<script type="text/javascript" src="scripts/module.min.js"></script>
<script type="text/javascript" src="scripts/hotkeys.min.js"></script>
<script type="text/javascript" src="scripts/uploader.min.js"></script>
<script type="text/javascript" src="scripts/simditor.min.js"></script>
</head>
<body>
<textarea id="editor" placeholder="Balabala" autofocus></textarea>
<script>
var editor = new Simditor({
textarea: $('#editor')
//optional options
});
</script>
</body>
</html>