Files
journal_com/style/simditor-2.3.5/index.html
wangjinlei 6e7ee3dd44 begin
2023-05-18 09:42:12 +08:00

28 lines
699 B
HTML

<!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>