我想对链接使用淡出效果。如果我使用正常模式,一切正常。
$(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);
而且它不是严格模式。我怎样才能解决这个问题?