ChatGPT解决这个技术问题 Extra ChatGPT

如何重定向到另一个网页?

这个问题的答案是社区的努力。编辑现有答案以改进这篇文章。它目前不接受新的答案或交互。

如何使用 jQuery 或纯 JavaScript 将用户从一个页面重定向到另一个页面?


R
Ryan McGeary

一个不是简单地使用 jQuery 重定向

jQuery 不是必需的,window.location.replace(...) 将最好地模拟 HTTP 重定向。

window.location.replace(...) 比使用 window.location.href 更好,因为 replace() 不会将原始页面保留在会话历史记录中,这意味着用户不会陷入无休止的后退按钮惨败中。

如果您想模拟某人点击链接,请使用 location.href

如果要模拟 HTTP 重定向,请使用 location.replace

例如:

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";

注意:与 replace() 的 HTTP 重定向类似的行为意味着它不会在浏览器的历史记录中创建条目。
我在 5 年前看到你的回答后创建了这个imgflip.com/i/11ua9c
如果您显示页面以进行重定向,则 location.replace() 可能更合适(从历史记录中排除具有重定向的页面)。但是为什么不首先在服务器端进行重定向呢?
如果有人仍然对您应用的所有出色答案但页面重定向无效,请访问:stackoverflow.com/questions/15759020/… 它适用于我的情况。
@x-yuri 我的用例是 URI 片段(在 # 符号之后)不会通过服务器端重定向保留,因为它们没有发送到服务器。
T
Timo Tijhof

警告:此答案仅作为一种可能的解决方案提供;这显然不是最好的解决方案,因为它需要 jQuery。相反,更喜欢纯 JavaScript 解决方案。

$(location).prop('href', 'http://stackoverflow.com')

C
Community

重定向页面的标准“香草”JavaScript 方式

window.location.href = 'newPage.html';

或更简单地说:(因为窗口是全局的)

location.href = 'newPage.html';

如果您在这里是因为在重定向时丢失了 HTTP_REFERER,请继续阅读:(否则忽略最后一部分)

以下部分适用于使用 HTTP_REFERER 作为许多安全措施之一的人(尽管它不是一个很好的保护措施)。如果您使用 Internet Explorer 8 或更低版本,则在使用任何形式的 JavaScript 页面重定向(location.href 等)时,这些变量会丢失。

下面我们将为 IE8 & 实现一个替代方案。降低,这样我们就不会丢失 HTTP_REFERER。否则,您几乎总是可以简单地使用 window.location.href

针对 HTTP_REFERER 进行测试(网址粘贴、会话等)可以帮助判断请求是否合法。 注意:还有一些方法可以解决/欺骗这些引荐来源网址,正如评论中 droop 的链接所指出的那样)

简单的跨浏览器测试解决方案(回退到 Internet Explorer 9+ 和所有其他浏览器的 window.location.href)

用法:redirect('anotherpage.aspx');

function redirect (url) {
    var ua        = navigator.userAgent.toLowerCase(),
        isIE      = ua.indexOf('msie') !== -1,
        version   = parseInt(ua.substr(4, 2), 10);

    // Internet Explorer 8 and lower
    if (isIE && version < 9) {
        var link = document.createElement('a');
        link.href = url;
        document.body.appendChild(link);
        link.click();
    }

    // All other browsers can use the standard window.location.href (they don't lose HTTP_REFERER like Internet Explorer 8 & lower does)
    else { 
        window.location.href = url; 
    }
}

G
Govind Singh

有很多方法可以做到这一点。

// window.location
window.location.replace('http://www.example.com')
window.location.assign('http://www.example.com')
window.location.href = 'http://www.example.com'
document.location.href = '/path'

// window.history
window.history.back()
window.history.go(-1)

// window.navigate; ONLY for old versions of Internet Explorer
window.navigate('top.jsp')


// Probably no bueno
self.location = 'http://www.example.com';
top.location = 'http://www.example.com';

// jQuery
$(location).attr('href','http://www.example.com')
$(window).attr('location','http://www.example.com')
$(location).prop('href', 'http://www.example.com')

J
Jeremy W

这适用于每个浏览器:

window.location.href = 'your_url';

t
tvanfosson

如果您对您正在尝试做的事情更具描述性,那将会有所帮助。如果您尝试生成分页数据,则可以选择一些方法来执行此操作。您可以为希望能够直接访问的每个页面生成单独的链接。

<a href='/path-to-page?page=1' class='pager-link'>1</a>
<a href='/path-to-page?page=2' class='pager-link'>2</a>
<span class='pager-link current-page'>3</a>
...

请注意,示例中的当前页面在代码和 CSS 中的处理方式不同。

如果您希望通过 AJAX 更改分页数据,这就是 jQuery 的用武之地。您要做的是将单击处理程序添加到对应于不同页面的每个锚标记。此单击处理程序将调用一些 jQuery 代码,该代码通过 AJAX 获取下一页并使用新数据更新表。下面的示例假设您有一个返回新页面数据的 Web 服务。

$(document).ready( function() {
    $('a.pager-link').click( function() {
        var page = $(this).attr('href').split(/\?/)[1];
        $.ajax({
            type: 'POST',
            url: '/path-to-service',
            data: page,
            success: function(content) {
               $('#myTable').html(content);  // replace
            }
        });
        return false; // to stop link
    });
});

S
Stephen Ostermiller

我也认为 location.replace(URL) 是最好的方法,但如果您想通知搜索引擎您的重定向(他们不会分析 JavaScript 代码来查看重定向),您应该将 rel="canonical" 元标记添加到您的网站。

添加一个带有 HTML 刷新元标记的 noscript 部分也是一个很好的解决方案。我建议您使用此 JavaScript redirection tool 创建重定向。它还具有 Internet 浏览器支持以传递 HTTP 引荐来源网址。

没有延迟的示例代码如下所示:

<!-- Place this snippet right after opening the head tag to make it work properly -->

<!-- This code is licensed under GNU GPL v3 -->
<!-- You are allowed to freely copy, distribute and use this code, but removing author credit is strictly prohibited -->
<!-- Generated by http://insider.zone/tools/client-side-url-redirect-generator/ -->

<!-- REDIRECTING STARTS -->
<link rel="canonical" href="https://yourdomain.example/"/>
<noscript>
    <meta http-equiv="refresh" content="0;URL=https://yourdomain.example/">
</noscript>
<!--[if lt IE 9]><script type="text/javascript">var IE_fix=true;</script><![endif]-->
<script type="text/javascript">
    var url = "https://yourdomain.example/";
    if(typeof IE_fix != "undefined") // IE8 and lower fix to pass the http referer
    {
        document.write("redirecting..."); // Don't remove this line or appendChild() will fail because it is called before document.onload to make the redirect as fast as possible. Nobody will see this text, it is only a tech fix.
        var referLink = document.createElement("a");
        referLink.href = url;
        document.body.appendChild(referLink);
        referLink.click();
    }
    else { window.location.replace(url); } // All other browsers
</script>
<!-- Credit goes to http://insider.zone/ -->
<!-- REDIRECTING ENDS -->

这不再是真的:搜索引擎不分析 Javascript
这对我来说似乎是最可靠的方法。
N
Nadeem Yasin

但是如果有人想重定向回主页,那么他可以使用以下代码段。

window.location = window.location.host

如果您拥有三个不同的环境(开发、登台和生产),那将会很有帮助。

您只需将这些词放在 Chrome 控制台或 Firebug 的控制台中即可探索此 window 或 window.location 对象。


O
Ondrej

JavaScript 为您提供了许多方法来检索和更改显示在浏览器地址栏中的当前 URL。所有这些方法都使用 Location 对象,它是 Window 对象的一个属性。您可以创建一个具有当前 URL 的新 Location 对象,如下所示。

var currentLocation = window.location;

URL的基本结构

<protocol>//<hostname>:<port>/<pathname><search><hash>

https://i.stack.imgur.com/4kiBE.jpg

协议——指定用于访问 Internet 上的资源的协议名称。 (HTTP(不带 SSL)或 HTTPS(带 SSL))主机名——主机名指定拥有资源的主机。例如,www.stackoverflow.com。服务器使用主机名提供服务。 port -- 一个端口号,用于识别 Internet 或其他网络消息到达服务器时要转发到的特定进程。路径名——路径提供有关 Web 客户端想要访问的主机中的特定资源的信息。例如,stackoverflow.com/index.html。查询——查询字符串跟随路径组件,并提供资源可用于某些目的的信息字符串(例如,作为搜索的参数或作为要处理的数据)。 hash -- URL 的锚点部分,包括井号 (#)。

使用这些 Location 对象属性,您可以访问所有这些 URL 组件

hash - 设置或返回 URL 的锚点部分。 host - 设置或返回 URL 的主机名和端口。主机名 - 设置或返回 URL 的主机名。 href - 设置或返回整个 URL。 pathname - 设置或返回 URL 的路径名。 port - 设置或返回服务器用于 URL 的端口号。协议 - 设置或返回 URL 的协议。 search - 设置或返回 URL 的查询部分

现在,如果您想更改页面或将用户重定向到其他页面,您可以像这样使用 Location 对象的 href 属性

您可以使用 Location 对象的 href 属性。

window.location.href = "http://www.stackoverflow.com";

Location Object 也有这三个方法

assign() -- 加载一个新文档。 reload() -- 重新加载当前文档。 replace() -- 用新文档替换当前文档

您还可以使用 assign() 和 replace 方法重定向到其他页面,例如这些

location.assign("http://www.stackoverflow.com");

location.replace("http://www.stackoverflow.com");

assign() 和 replace() 有何不同 -- replace() 方法和 assign() 方法() 的区别在于 replace() 从文档历史记录中删除当前文档的 URL,意味着不能使用“返回”按钮导航回原始文档。因此,如果您想加载一个新文档,并希望提供导航回原始文档的选项,请使用 assign() 方法。

您也可以像这样使用 jQuery 更改位置对象 href 属性

$(location).attr('href',url);

因此,您可以将用户重定向到其他一些 url。


A
Alireza

基本上 jQuery 只是一个 JavaScript 框架,在这种情况下,为了做一些事情,比如重定向,你可以只使用纯 JavaScript,所以在这种情况下,你有 3 个使用 vanilla JavaScript 的选项:

1)使用位置替换,这将替换页面的当前历史记录,意味着无法使用返回按钮返回到原始页面。

window.location.replace("http://stackoverflow.com");

2)使用位置分配,这将为您保留历史记录,使用后退按钮,您可以返回原始页面:

window.location.assign("http://stackoverflow.com");

3)我建议使用之前的方法之一,但这可能是使用纯 JavaScript 的第三个选项:

window.location.href="http://stackoverflow.com";

您也可以在 jQuery 中编写一个函数来处理它,但不推荐,因为它只有一行纯 JavaScript 函数,如果您已经在窗口范围内,您也可以在没有窗口的情况下使用上述所有函数,例如 window.location.replace("http://stackoverflow.com"); 可以是location.replace("http://stackoverflow.com");

我也将它们全部显示在下图中:

https://i.stack.imgur.com/ODheM.jpg


d
duplode

应该可以使用 window.location 进行设置。

例子:

window.location = "https://stackoverflow.com/";

这是过去有关该主题的帖子:How do I redirect to another webpage?


S
Stephen Ostermiller

在开始之前,jQuery 是一个用于 DOM 操作的 JavaScript 库。所以你不应该使用 jQuery 进行页面重定向。

来自 Jquery.com 的报价:

虽然 jQuery 在旧浏览器版本中运行可能不会出现重大问题,但我们不会在其中积极测试 jQuery,并且通常不会修复其中可能出现的错误。

在这里找到:https://jquery.com/browser-support/

因此,jQuery 并不是向后兼容的终极解决方案。

以下使用原始 JavaScript 的解决方案适用于所有浏览器,并且长期以来一直是标准的,因此您不需要任何库来支持跨浏览器。

此页面将在 3000 毫秒后重定向到 Google

<!DOCTYPE html>
<html>
    <head>
        <title>example</title>
    </head>
    <body>
        <p>You will be redirected to google shortly.</p>
        <script>
            setTimeout(function(){
                window.location.href="http://www.google.com"; // The URL that will be redirected too.
            }, 3000); // The bigger the number the longer the delay.
        </script>
    </body>
</html>

不同的选项如下:

window.location.href="url"; // Simulates normal navigation to a new page
window.location.replace("url"); // Removes current URL from history and replaces it with a new URL
window.location.assign("url"); // Adds new URL to the history stack and redirects to the new URL

window.history.back(); // Simulates a back button click
window.history.go(-1); // Simulates a back button click
window.history.back(-1); // Simulates a back button click
window.navigate("page.html"); // Same as window.location="url"

使用替换时,后退按钮不会回到重定向页面,就好像它从未出现在历史记录中一样。如果您希望用户能够返回重定向页面,请使用 window.location.hrefwindow.location.assign。如果您确实使用了让用户返回重定向页面的选项,请记住,当您进入重定向页面时,它会将您重定向回来。因此,在为您的重定向选择选项时要考虑到这一点。在页面仅在用户完成操作时重定向的情况下,将页面放在后退按钮历史记录中就可以了。但是如果页面自动重定向,那么您应该使用替换,以便用户可以使用后退按钮而不会被迫返回重定向发送的页面。

您还可以使用元数据来运行页面重定向,如下所示。

元刷新

<meta http-equiv="refresh" content="0;url=http://evil.example/" />

元位置

<meta http-equiv="location" content="URL=http://evil.example" />

基地劫持

<base href="http://evil.example/" />

在此页面上可以找到更多将您毫无戒心的客户端重定向到他们可能不希望访问的页面的方法(其中不依赖于 jQuery):

https://code.google.com/p/html5security/wiki/RedirectionMethods

我还想指出,人们不喜欢被随机重定向。仅在绝对需要时重定向人员。如果您开始随机重定向人们,他们将永远不会再访问您的网站。

下一段是假设的:

您也可能被报告为恶意网站。如果发生这种情况,那么当人们单击指向您网站的链接时,用户浏览器可能会警告他们您的网站是恶意的。如果人们在您的网站上报告糟糕的体验,搜索引擎也可能会开始降低您的评分。

请查看有关重定向的 Google 网站管理员指南:https://support.google.com/webmasters/answer/2721217?hl=en&ref_topic=6001971

这是一个有趣的小页面,可将您踢出页面。

<!DOCTYPE html>
<html>
    <head>
        <title>Go Away</title>
    </head>
    <body>
        <h1>Go Away</h1>
        <script>
            setTimeout(function(){
                window.history.back();
            }, 3000);
        </script>
    </body>
</html>

如果您将两个页面示例组合在一起,您将拥有一个重新路由的婴儿循环,这将保证您的用户永远不会想要再次使用您的网站。


B
Ben Lee
var url = 'asdf.html';
window.location.href = url;

P
Peter Mortensen

你可以在没有 jQuery 的情况下做到这一点:

window.location = "http://yourdomain.com";

如果你只想要 jQuery,那么你可以这样做:

$jq(window).attr("location","http://yourdomain.com");

P
Peter Mortensen

这适用于 jQuery:

$(window).attr("location", "http://google.fr");

S
Sakthi Karthik

# 使用 jQuery/JavaScript 方法的 HTML 页面重定向

试试这个示例代码:

function YourJavaScriptFunction()
{
    var i = $('#login').val();
    if (i == 'login')
        window.location = "Login.php";
    else
        window.location = "Logout.php";
}

如果您想以 window.location = "www.google.co.in"; 形式提供完整的 URL。


j
jonju

原始问题:“如何使用 jQuery 重定向?”,因此答案实现了 jQuery >> 免费用例。

仅使用 JavaScript 重定向到页面:

window.location.href = "/contact/";

或者,如果您需要延迟:

setTimeout(function () {
  window.location.href = "/contact/";
}, 2000);   // Time in milliseconds

jQuery 允许您轻松地从网页中选择元素。您可以在页面上找到您想要的任何内容,然后使用 jQuery 添加特殊效果、对用户操作做出反应,或者显示和隐藏您选择的元素内部或外部的内容。所有这些任务都从了解 how to select an element or an event 开始。

$('a,img').on('click',function(e){
  e.preventDefault();
  $(this).animate({
    opacity: 0 //Put some CSS animation here
  }, 500);
  setTimeout(function(){
    // OK, finished jQuery staff, let's go redirect
    window.location.href = "/contact/";
  },500);
});

想象一下有人用 10000 行代码编写了一个脚本/插件。使用 jQuery,您只需一两行即可连接到此代码。


A
Ashish Ratan

您需要将此行放入您的代码中:

$(location).attr("href","http://stackoverflow.com");

如果您没有 jQuery,请使用 JavaScript:

window.location.replace("http://stackoverflow.com");
window.location.href("http://stackoverflow.com");

C
Community

所以,问题是如何制作重定向页面,而不是如何重定向到网站?

您只需要为此使用 JavaScript。这是一些将创建动态重定向页面的小代码。

<script>
    var url = window.location.search.split('url=')[1]; // Get the URL after ?url=
    if( url ) window.location.replace(url);
</script>

因此,假设您只是将此代码段放入您网站上的 redirect/index.html 文件中,您可以像这样使用它。

http://www.mywebsite.com/redirect?url=http://stackoverflow.com

如果您转到该链接,它会自动将您重定向到 stackoverflow.com。

链接到文档

这就是您使用 JavaScript 制作简单重定向页面的方式

编辑:

还有一点需要注意。我在我的代码中添加了 window.location.replace,因为我认为它适合重定向页面,但是,您必须知道,当使用 window.location.replace 并被重定向时,当您在浏览器中按下后退按钮时,它会不< /strong> 回到了重定向页面,它会回到它之前的页面,看看这个小演示。

例子:

过程:商店首页 => 将页面重定向到谷歌 => 谷歌在谷歌时:谷歌 => 浏览器中的后退按钮 => 商店首页

因此,如果这符合您的需求,那么一切都应该没问题。如果您想在浏览器历史记录中包含重定向页面,请替换此

if( url ) window.location.replace(url);

if( url ) window.location.href = url;

P
Peter Mortensen

在您的点击功能上,只需添加:

window.location.href = "The URL where you want to redirect";
$('#id').click(function(){
    window.location.href = "http://www.google.com";
});

s
stites

尝试这个:

location.assign("http://www.google.com");

Code snippet of example


P
Peter Mortensen

不需要 jQuery。你可以这样做:

window.open("URL","_self","","")

就是这么容易!

发起 HTTP 请求的最佳方式是使用 document.loacation.href.replace('URL')


S
Souleste

使用 JavaScript:

方法一:

window.location.href="http://google.com";

方法二:

window.location.replace("http://google.com");

使用 jQuery:

方法一:$(location)

$(location).attr('href', 'http://google.com');

方法二:可重用函数

jQuery.fn.redirectTo = function(url){
    window.location.href = url;
}

jQuery(window).redirectTo("http://google.com");

P
Peter Mortensen

先正确写。您想在应用程序中导航到另一个链接,从您的应用程序中导航到另一个链接。这是代码:

window.location.href = "http://www.google.com";

如果你想在你的应用程序中导航页面,那么我也有代码,如果你愿意的话。


P
Peter Mortensen

您可以像这样在 jQuery 中重定向:

$(location).attr('href', 'http://yourPage.com/');

P
Peter Mortensen

JavaScript 非常广泛。如果你想跳转到另一个页面,你有三个选项。

 window.location.href='otherpage.com';
 window.location.assign('otherpage.com');
 //and...

 window.location.replace('otherpage.com');

当您想移动到另一个页面时,如果这是您的要求,您可以使用其中的任何一个。然而,所有三个选项都限于不同的情况。根据您的要求明智地选择。

如果您对有关该概念的更多知识感兴趣,可以进一步了解。

window.location.href; // Returns the href (URL) of the current page
window.location.hostname; // Returns the domain name of the web host
window.location.pathname; // Returns the path and filename of the current page
window.location.protocol; // Returns the web protocol used (http: or https:)
window.location.assign; // Loads a new document
window.location.replace; // RReplace the current location with new one.

P
Peter Mortensen

在 JavaScript 和 jQuery 中,我们可以使用以下代码将一个页面重定向到另一个页面:

window.location.href="http://google.com";
window.location.replace("page1.html");

P
Peter Mortensen

ECMAScript 6 + jQuery,85 字节

$({jQueryCode:(url)=>location.replace(url)}).attr("jQueryCode")("http://example.com")

请不要杀我,这是一个笑话。这是个笑话。这是个玩笑。

这确实“提供了对问题的答案”,因为它要求“使用 jQuery”的解决方案,在这种情况下需要以某种方式强制它进入等式。

Ferrybig 显然需要解释这个笑话(还是在开玩笑,我敢肯定评论表上的选项有限),所以事不宜迟:

其他答案是在 locationwindow 对象上不必要地使用 jQuery 的 attr()

这个答案也滥用了它,但以一种更荒谬的方式。这不是使用它来设置位置,而是使用 attr() 来检索设置位置的函数。

该函数被命名为 jQueryCode,即使它没有任何 jQuery,并且调用函数 somethingCode 实在是太可怕了,尤其是当它甚至不是一种语言时。

“85 bytes”是对 Code Golf 的引用。打高尔夫球显然不是你应该在代码高尔夫球之外做的事情,而且这个答案显然不是真正的打高尔夫球。

基本上,畏缩。


l
lalithkumar

Javascript:

window.location.href='www.your_url.com';
window.top.location.href='www.your_url.com';
window.location.replace('www.your_url.com');

查询:

var url='www.your_url.com';
$(location).attr('href',url);
$(location).prop('href',url);//instead of location you can use window

M
Milap

这是一个延时重定向。您可以将延迟时间设置为任何您想要的:

<!doctype html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Your Document Title</title>
    <script type="text/javascript">
        function delayer(delay) {
            onLoad = setTimeout('window.location.href = "http://www.google.com/"', delay);
        }
    </script>
</head>

<body>
    <script>
        delayer(8000)
    </script>
    <div>You will be redirected in 8 seconds!</div>
</body>

</html>