remote.html 526 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>KindEditor Test</title>
  6. <script src="http://www.kindsoft.net/ke4/kindeditor-all-min.js"></script>
  7. <script>
  8. //document.domain = 'domain.com';
  9. KindEditor.basePath = 'http://domain.com/kindeditor/trunk/';
  10. KindEditor.ready(function(K) {
  11. K.create('#editor1');
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <h1>KindEditor Test</h1>
  17. <textarea id="editor1" name="editor1" cols="100" rows="20" style="width:700px;height:300px;"></textarea>
  18. </body>
  19. </html>