web-xiangsonghua/dwt-ems/webpack-ems/vendors/wangEditor/index.html

34 lines
421 B
HTML
Raw Normal View History

2024-12-23 15:13:57 +08:00
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link href="./css/wangEditor.css" rel="stylesheet" />
<script src="./jquery.min.js"></script>
<script src="./js/wangEditor.js"></script>
</head>
<body>
<style>
#editor{
height:600px;
width:1200px;
}
</style>
<div id="editor">
</div>
</body>
<script>
var editor = new wangEditor('editor');
editor.create();
</script>
</html>