/source/Plug-in/kind/examples/url-type.html

http://prosporous.googlecode.com/ · HTML · 53 lines · 53 code · 0 blank · 0 comment · 0 complexity · d9328248dbfd3580a9e1e251ae69dd09 MD5 · raw file

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>URL Type Examples</title>
  6. <style>
  7. form {
  8. margin: 0;
  9. }
  10. textarea {
  11. display: block;
  12. }
  13. </style>
  14. <script charset="utf-8" src="../kindeditor-min.js"></script>
  15. <script charset="utf-8" src="../lang/zh_CN.js"></script>
  16. <script>
  17. KindEditor.ready(function(K) {
  18. K.create('#content1', {
  19. urlType : 'relative'
  20. });
  21. K.create('#content2', {
  22. urlType : 'absolute'
  23. });
  24. K.create('#content3', {
  25. urlType : 'domain'
  26. });
  27. });
  28. </script>
  29. </head>
  30. <body>
  31. <h3>??URL</h3>
  32. <textarea id="content1" name="content" style="width:700px;height:200px;visibility:hidden;">
  33. ?????<img border="0" src="./../plugins/emoticons/images/0.gif" /><br />
  34. ?????<img border="0" alt="" src="http://img1.cache.netease.com/img09/logo/logo.gif" /><br />
  35. ???????<a href="./demo-19.html" target="_blank">????</a><br />
  36. ???????<a href="http://www.163.com/" target="_blank">????</a><br />
  37. </textarea>
  38. <h3>??URL</h3>
  39. <textarea id="content2" name="content" style="width:700px;height:200px;visibility:hidden;">
  40. ?????<img border="0" src="./../plugins/emoticons/images/0.gif" /><br />
  41. ?????<img border="0" alt="" src="http://img1.cache.netease.com/img09/logo/logo.gif" /><br />
  42. ???????<a href="./demo-19.html" target="_blank">????</a><br />
  43. ???????<a href="http://www.163.com/" target="_blank">????</a><br />
  44. </textarea>
  45. <h3>??URL??????</h3>
  46. <textarea id="content3" name="content" style="width:700px;height:200px;visibility:hidden;">
  47. ?????<img border="0" src="./../plugins/emoticons/images/0.gif" /><br />
  48. ?????<img border="0" alt="" src="http://img1.cache.netease.com/img09/logo/logo.gif" /><br />
  49. ???????<a href="./demo-19.html" target="_blank">????</a><br />
  50. ???????<a href="http://www.163.com/" target="_blank">????</a><br />
  51. </textarea>
  52. </body>
  53. </html>