123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>私塾家作业批改后台</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <!-- <meta name="viewport" content="width=1920, target-densityDpi=device-dpi, user-scalable=no"> -->
- <!-- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" /> -->
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <script>
- window.onload = function () {
- // js增加svg的outerHTML
- Object.defineProperty(SVGElement.prototype, "outerHTML", {
- get: function () {
- return new XMLSerializer().serializeToString(this)
- }
- })
- Object.defineProperty(SVGElement.prototype, "innerHTML", {
- get: function () {
- var s = this.outerHTML
- var ropen = new RegExp("<" + this.nodeName + '\\b(?:(["\'])[^"]*?(\\1)|[^>])*>', "i")
- var rclose = new RegExp("<\/" + this.nodeName + ">$", "i")
- return s.replace(ropen, "").replace(rclose, "")
- }
- })
- }
- </script>
- </head>
- <body>
- <script type='text/javascript' src="https://res.wx.qq.com/connect/zh_CN/htmledition/js/wxLogin.js"></script>
- <script src="./static/ckeditor_4.10.0/ckeditor.js"></script>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|