/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
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>URL Type Examples</title>
- <style>
- form {
- margin: 0;
- }
- textarea {
- display: block;
- }
- </style>
- <script charset="utf-8" src="../kindeditor-min.js"></script>
- <script charset="utf-8" src="../lang/zh_CN.js"></script>
- <script>
- KindEditor.ready(function(K) {
- K.create('#content1', {
- urlType : 'relative'
- });
- K.create('#content2', {
- urlType : 'absolute'
- });
- K.create('#content3', {
- urlType : 'domain'
- });
- });
- </script>
- </head>
- <body>
- <h3>??URL</h3>
- <textarea id="content1" name="content" style="width:700px;height:200px;visibility:hidden;">
- ?????<img border="0" src="./../plugins/emoticons/images/0.gif" /><br />
- ?????<img border="0" alt="" src="http://img1.cache.netease.com/img09/logo/logo.gif" /><br />
- ???????<a href="./demo-19.html" target="_blank">????</a><br />
- ???????<a href="http://www.163.com/" target="_blank">????</a><br />
- </textarea>
- <h3>??URL</h3>
- <textarea id="content2" name="content" style="width:700px;height:200px;visibility:hidden;">
- ?????<img border="0" src="./../plugins/emoticons/images/0.gif" /><br />
- ?????<img border="0" alt="" src="http://img1.cache.netease.com/img09/logo/logo.gif" /><br />
- ???????<a href="./demo-19.html" target="_blank">????</a><br />
- ???????<a href="http://www.163.com/" target="_blank">????</a><br />
- </textarea>
- <h3>??URL??????</h3>
- <textarea id="content3" name="content" style="width:700px;height:200px;visibility:hidden;">
- ?????<img border="0" src="./../plugins/emoticons/images/0.gif" /><br />
- ?????<img border="0" alt="" src="http://img1.cache.netease.com/img09/logo/logo.gif" /><br />
- ???????<a href="./demo-19.html" target="_blank">????</a><br />
- ???????<a href="http://www.163.com/" target="_blank">????</a><br />
- </textarea>
- </body>
- </html>