12345678910111213141516171819 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>KindEditor Test</title>
- <script src="http://www.kindsoft.net/ke4/kindeditor-all-min.js"></script>
- <script>
- //document.domain = 'domain.com';
- KindEditor.basePath = 'http://domain.com/kindeditor/trunk/';
- KindEditor.ready(function(K) {
- K.create('#editor1');
- });
- </script>
- </head>
- <body>
- <h1>KindEditor Test</h1>
- <textarea id="editor1" name="editor1" cols="100" rows="20" style="width:700px;height:300px;"></textarea>
- </body>
- </html>
|