/source/Plug-in/kind/examples/jquery.html
http://prosporous.googlecode.com/ · HTML · 29 lines · 29 code · 0 blank · 0 comment · 0 complexity · 293b873019aeac7860507cb64f6707c0 MD5 · raw file
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>With jQuery</title>
- <style>
- form {
- margin: 0;
- }
- textarea {
- display: block;
- }
- </style>
- <script charset="utf-8" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
- <script charset="utf-8" src="../kindeditor-min.js"></script>
- <script charset="utf-8" src="../lang/zh_CN.js"></script>
- <script>
- $(function() {
- var editor = KindEditor.create('textarea[name="content"]');
- });
- </script>
- </head>
- <body>
- <h3>??jQuery</h3>
- <form>
- <textarea name="content" style="width:800px;height:200px;"></textarea>
- </form>
- </body>
- </html>