Browse Source

H5-新增调试工具

panyong 3 years ago
parent
commit
e308cb8b66
1 changed files with 14 additions and 0 deletions
  1. 14 0
      htmldev/dashboard/public/index.html

+ 14 - 0
htmldev/dashboard/public/index.html

@@ -33,5 +33,19 @@
     let documentCtx = document.documentElement
     documentCtx.style.fontSize = documentCtx.clientWidth / 10 + 'px'
   }
+  // 加载调试工具
+  ;(function () {
+    var host = window.location.host
+    var domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
+    var el = document.createElement('script')
+    var src = '//cdn.jsdelivr.net/npm/eruda@2.4.1/eruda.js'
+    el.src = src
+    if (/^0|192|10|localhost|test/.test(domain)) {
+      document.body.appendChild(el)
+      el.onload = function () {
+        eruda.init()
+      }
+    }
+  })()
 </script>
 </html>