如何自动重定向到另一个HTML页面

时间:2018-12-23 10:24:59

标签: javascript jquery html

我正在使用JQuery和JS在学校做记忆游戏。 游戏结束后,我想自动重定向到另一个HTML页面,但是我不能...我尝试了很多方法,但这些方法均无效。

我已经尝试了很多命令,例如

  • $(location).attr("href", "Page.html");
  • window.location(...);
  • window.location.href(...);
  • location.href(...);
  • $("body").load("Page.html");

if (j==2) {
    setTimeout(function() {
      if(images[0].attr("src")!=images[1].attr("src")) {
        $(images[1]).hide();

        $(images[1]).next().show();

        $(images[0]).hide();

        $(images[0]).next().show();

        contatore = contatore + j;

        if(contatore > 16) $("body").load("Win.html");
      }
    }, 200);

    j=0;
}

预期结果将是自动重定向到辅助HTML页面(Win.html),但实际结果是,游戏结束时什么也没发生。

0 个答案:

没有答案