12345678910111213141516171819202122232425 |
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
- <title>KindEditor Test</title>
- </head>
- <body>
- <h1 id="type">KindEditor Test</h1>
- <form method="post" action="../php/demo.php">
- <textarea name="editor1" cols="100" rows="20" style="width:800px;height:200px;"></textarea>
- <br />
- <script src="../kindeditor.js"></script>
- <script src="../lang/zh-CN.js"></script>
- <script src="../lang/en.js"></script>
- <script>
- KindEditor.ready(function(K) {
- window.editor = K.create('textarea', {
- allowFileManager : true,
- langType : 'en'
- });
- });
- </script>
- </form>
- </body>
- </html>
|