quirkmode.html 663 B

12345678910111213141516171819202122232425
  1. <html>
  2. <head>
  3. <meta charset="utf-8" />
  4. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  5. <title>KindEditor Test</title>
  6. </head>
  7. <body>
  8. <h1 id="type">KindEditor Test</h1>
  9. <form method="post" action="../php/demo.php">
  10. <textarea name="editor1" cols="100" rows="20" style="width:800px;height:200px;"></textarea>
  11. <br />
  12. <script src="../kindeditor.js"></script>
  13. <script src="../lang/zh-CN.js"></script>
  14. <script src="../lang/en.js"></script>
  15. <script>
  16. KindEditor.ready(function(K) {
  17. window.editor = K.create('textarea', {
  18. allowFileManager : true,
  19. langType : 'en'
  20. });
  21. });
  22. </script>
  23. </form>
  24. </body>
  25. </html>