瀏覽代碼

fix: PDF/word图片模式预览时, 下翻图片时频繁请求图片资源

ZhengJin Fang 4 年之前
父節點
當前提交
727e9ae9ed
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6 2
      server/src/main/resources/static/js/lazyload.js

+ 6 - 2
server/src/main/resources/static/js/lazyload.js

@@ -19,8 +19,12 @@ function checkImgs() {
 }
 
 function loadImg(el) {
-    var source = el.getAttribute("data-src");
-    el.src = source;
+    var loaded = el.getAttribute("loaded");
+    if (!Boolean(loaded)) {
+        var source = el.getAttribute("data-src");
+        el.setAttribute("loaded", true);
+        el.src = source;
+    }
 }
 // var mustRun = 500
 // function throttle(fn, mustRun) {