如何让jquery倒计时重定向到重置文件

时间:2010-09-20 13:34:24

标签: javascript

这是我的倒计时

$('span.countdown').each(function() {
        var endtime = $(this).html();
        $(this).countdown({
            until:  endtime,
            format: 'dhmS',
            layout: '{d<}{dn} days {d>}{h<}{hn} hours {h>}{m<}{mn} mins {m>}{sn} secs',
            expiryUrl: self.location.href
        });
    });
}

我想在倒计时到达零时重定向到index.php :)

2 个答案:

答案 0 :(得分:1)

            expiryUrl: self.location.href
    to

            expiryUrl: window.location.href

or 

            expiryUrl: "absolute url" //ie http://domain/index.php

答案 1 :(得分:0)

尝试将其更改为expiryUrl: "something"