34 lines
421 B
HTML
34 lines
421 B
HTML
|
<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>
|