我有一个简单的网站,可以在将您带到网址之前将内容滑出网页。但是,我需要能够确定滑动方向,具体取决于您当前所在的页面。
我需要这样做,但我不确定如何用jQuery正确表达它:
if (current page == about.php) {
animate right then go to target URL }
else {
do default behaviour }
目前,我有这个功能效果不佳,因为它会以某种方式动画,无论你要去哪个网址:
function animateLeftAndGo(x) {
$(x).click(function (e) {
e.preventDefault();
var href = this.href;
$('.pop-up').fadeOut(function(){
$('.wrapper').animate({left: "+=150%"}, "slow", function(){
window.location = href;
});
});
});
}
由以下人员召集:
animateLeftAndGo('a.archive');
如何设置if statement
,询问当前网址是否为about.php
?
答案 0 :(得分:-1)
在JavaScript中使用位置对象:http://www.w3schools.com/jsref/obj_location.asp
if(location.pathname ==''){ }