image-upload.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>图片上传示例 - Editor.md examples</title>
  6. <link rel="stylesheet" href="css/style.css" />
  7. <link rel="stylesheet" href="../css/editormd.css" />
  8. <link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
  9. </head>
  10. <body>
  11. <div id="layout" style="height: 2000px;background: #f6f6f6;">
  12. <header>
  13. <h1>图片上传示例</h1>
  14. <p>Image upload example</p>
  15. </header>
  16. <div id="test-editormd">
  17. <textarea style="display:none;">#### Settings
  18. ```javascript
  19. {
  20. imageUpload : false,
  21. imageFormats : ["jpg", "jpeg", "gif", "png", "bmp", "webp"],
  22. imageUploadURL : "./php/upload.php",
  23. }
  24. ```
  25. #### JSON data
  26. ```json
  27. {
  28. success : 0 | 1, // 0 表示上传失败,1 表示上传成功
  29. message : "提示的信息,上传成功或上传失败及错误信息等。",
  30. url : "图片地址" // 上传成功时才返回
  31. }
  32. ```</textarea>
  33. </div>
  34. </div>
  35. <script src="js/jquery.min.js"></script>
  36. <script src="../editormd.js"></script>
  37. <script type="text/javascript">
  38. $(function() {
  39. var testEditor = editormd("test-editormd", {
  40. width: "90%",
  41. height: 640,
  42. markdown : "",
  43. path : '../lib/',
  44. //dialogLockScreen : false, // 设置弹出层对话框不锁屏,全局通用,默认为 true
  45. //dialogShowMask : false, // 设置弹出层对话框显示透明遮罩层,全局通用,默认为 true
  46. //dialogDraggable : false, // 设置弹出层对话框不可拖动,全局通用,默认为 true
  47. //dialogMaskOpacity : 0.4, // 设置透明遮罩层的透明度,全局通用,默认值为 0.1
  48. //dialogMaskBgColor : "#000", // 设置透明遮罩层的背景颜色,全局通用,默认为 #fff
  49. imageUpload : true,
  50. imageFormats : ["jpg", "jpeg", "gif", "png", "bmp", "webp"],
  51. imageUploadURL : "./php/upload.php?test=dfdf",
  52. /*
  53. 上传的后台只需要返回一个 JSON 数据,结构如下:
  54. {
  55. success : 0 | 1, // 0 表示上传失败,1 表示上传成功
  56. message : "提示的信息,上传成功或上传失败及错误信息等。",
  57. url : "图片地址" // 上传成功时才返回
  58. }
  59. */
  60. });
  61. });
  62. </script>
  63. </body>
  64. </html>