j查询页面淡入淡出和严格模式

jQuery page fading and strict mode

本文关键字:模式 淡出 淡入 查询      更新时间:2023-09-26

我想在链接上使用淡出效果。如果我使用正常模式,一切正常。

$(document).ready(function() {
   $("a.transition").click(function (e) {
   event.preventDefault();
   newLocation = this.href;
   $("body").fadeOut(1000, function () {
      window.location = newLocation;
  });
  });
});

但我必须使用严格模式

(function($){
"use strict";
 .....
 .....
$(document).ready(function() {
   $("a.transition").click(function (e) {
   event.preventDefault();
   newLocation = this.href;
   $("body").fadeOut(1000, function () {
      window.location = newLocation;
  });
  });
  .....
  init other functions
  ....
});
})(jQuery);

而且它不是严格模式的工作。我该如何解决这个问题?

试试这个!如果它不起作用,请检查您的 javascript 控制台,看看那里有什么?

$("a.transition").click(function (e) {
   e.preventDefault();
   var newLocation = $(this).prop("href");
   $("body").fadeOut(1000, function () {
       window.location.href = newLocation;
   });
});