tianyun 1 год назад
Родитель
Сommit
c3d8906ea1
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      simple-demo/js/util.js

+ 13 - 0
simple-demo/js/util.js

@@ -397,3 +397,16 @@ async function convertToWebPAsync(base64Image) {
         return webpData;
     }
 }
+
+
+function closeWindow(){
+    const userAgent = navigator.userAgent;
+    if (userAgent.indexOf("Firefox") != -1 || userAgent.indexOf("Chrome") !=-1) {
+        window.location.href="about:blank";
+        window.close();
+    } else {
+        window.opener = null;
+        window.open("", "_self");
+        window.close();
+    }
+}