リンクにフェードアウト効果を使用したい。通常モードを使用すると、すべて正常に機能します。
$(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);
そして、厳密モードでは機能していません。どうすればこれを修正できますか?