如何使用 jQuery 或者原生 JavaScript 重定向到另一个网页?

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

7451182 次浏览

如果您在尝试做的事情上更具描述性会有所帮助。如果您试图生成分页数据,有一些选择可以做到这一点。您可以为您希望能够直接访问的每个页面生成单独的链接。

<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});});

一个不只是使用jQuery重定向

jQuery不是必需的,#0最好模拟HTTP重定向。

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

如果你想模拟有人点击链接,使用location.href

如果您想模拟HTTP重定向,请使用#0

例如:

// similar behavior as an HTTP redirectwindow.location.replace("http://stackoverflow.com");
// similar behavior as clicking on a linkwindow.location.href = "http://stackoverflow.com";
var url = 'asdf.html';window.location.href = url;

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

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

这适用于所有浏览器:

window.location.href = 'your_url';

这适用于jQuery:

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

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

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

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

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

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

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

或者更简单地说:(因为window是全局的)

location.href = 'newPage.html';

如果您在这里是因为您在重定向时丢失了HTTP_REFERER,请继续阅读:

(否则忽略最后一部分)


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

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

HTTP_REFERER(URL粘贴、会话等)可以进行测试有助于判断请求是否合法。备注:还有一些方法可以绕过/欺骗这些引用者,正如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 lowerif (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;}}

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

window.location = window.location.host

如果您有三种不同的环境,如开发、暂存和生产,这将很有帮助。

您可以浏览此窗口或window.location对象,只需将这些单词放入Chrome控制台或Firebug的控制台。

在您的单击函数上,只需添加:

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

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

添加一个带有超文本标记语言刷新元标记的nocript部分也是一个很好的解决方案。我建议您使用这个JavaScript重定向工具来创建重定向。它还支持Internet Explorer来传递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 -->

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

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

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

在PHP,超文本标记语言或jQuery部分之后编写以下代码。如果在PHP或超文本标记语言部分的中间,则使用<脚本>标记。

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

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

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

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

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

就是这么简单!

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

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

你只需要为此使用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并且你被重定向时,当你在浏览器中按下后退按钮时,它将没有返回重定向页面,它将返回到它之前的页面,看看这个小演示。

示例:

过程:商店首页=>将页面重定向到谷歌=>谷歌

在谷歌时:谷歌=>浏览器中的后退按钮=>商店首页

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

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

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

试试这个:

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

示例代码片段

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

<!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>

您可以像在以下代码中一样使用它,其中getRequestToForwardPage是请求映射(url)。您也可以使用您的URL。

function savePopUp(){$.blockUI();$.ajax({url:"GuestHouseProcessor?roomType="+$("#roomType").val(),data: $("#popForm").serialize(),dataType: "json",error: (function() {alert("Server Error");$.unblockUI();}),success: function(map) {$("#layer1").hide();$.unblockUI();window.location = "getRequestToForwardPage";}});

这是针对应用程序的相同上下文。

如果您只想使用jQuery特定代码,那么以下代码可能会有所帮助:

 $(location).attr('href',"http://www.google.com");$jq(window).attr("location","http://www.google.com");$(location).prop('href',"http://www.google.com");

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

var currentLocation = window.location;

URL的基本结构

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

输入图片描述

  1. 协议——指定用于访问Internet上资源的协议名称。(HTTP(无SSL)或HTTPS(带SSL))

  2. 主机名--主机名指定拥有资源的主机。例如,www.stackoverflow.com.服务器使用主机名提供服务。

  3. port——一个端口号,用于识别Internet或其他网络消息到达服务器时要转发到的特定进程。

  4. 路径名路径提供了Web客户机想要访问的主机中的特定资源的信息。例如,stackoverflow.com/index.html.

  5. 查询——查询字符串跟随路径组件,并提供资源可用于某些目的的信息字符串(例如,作为搜索的参数或作为要处理的数据)。

  6. hash——URL的锚点部分,包括哈希符号(#)。

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

  1. 哈希-设置或返回URL的定位部分。
  2. 主机-设置或返回URL的主机名和端口。
  3. 主机名-设置或返回URL的主机名。
  4. href-设置或返回整个URL。
  5. 路径名-设置或返回URL的路径名。
  6. 端口-设置或返回服务器用于URL的端口号。
  7. 协议-设置或返回URL的协议。
  8. 搜索-设置或返回URL的查询部分

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

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

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

位置对象也有这三种方法

  1. 赋值--加载新文档。
  2. 重新加载--重新加载当前文档。
  3. 替换()--用新文档替换当前文档

您也可以使用分配()和替换方法重定向到其他页面,如

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

赋值()和替换()的区别--替换()方法和分配()方法之间的区别是,替换()从文档历史中删除当前文档的URL,意味着无法使用“返回”按钮导航回原始文档。因此,如果您想加载新文档,并希望提供导航回原始文档的选项,请使用分配()方法。

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

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

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

您需要在代码中添加这一行:

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

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

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

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

// window.locationwindow.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.historywindow.history.back()window.history.go(-1)
// window.navigate; ONLY for old versions of Internet Explorerwindow.navigate('top.jsp')

// Probably no buenoself.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')
<script type="text/javascript">var url = "https://yourdomain.com";
// IE8 and lower fixif (navigator.userAgent.match(/MSIE\s(?!9.0)/)){var referLink = document.createElement("a");referLink.href = url;document.body.appendChild(referLink);referLink.click();}
// All other browserselse { window.location.replace(url); }</script>

#超文本标记语言页面重定向使用jQuery/JavaScript方法

试试这个示例代码:

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

如果您想提供完整的URL作为#0

我就是这样使用它的。

   window.location.replace('yourPage.aspx');// If you're on root and redirection page is also on the root
window.location.replace(window.location.host + '/subDirectory/yourPage.aspx');
// If you're in sub directory and redirection page is also in some other sub directory.

应该能够使用window.location设置。

示例:

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

这是关于这个主题的过去的帖子:如何重定向到另一个网页?

有三种主要方法可以做到这一点,

window.location.href='blaah.com';window.location.assign('blaah.com');

和…

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

对于传统的重定向来说,最后一个是最好的,因为它不会在搜索历史记录中保存您在被重定向之前访问的页面。但是,如果您只想使用JavaScript打开一个选项卡,您可以使用上述任何一个。1

编辑:window前缀是可选的。

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

引用Jquery.com:

虽然jQuery可能在较旧的浏览器版本中运行而没有重大问题,我们不会在其中主动测试jQuery,通常不会修复错误可能会出现在他们身上

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

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

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

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

<!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 pagewindow.location.replace("url"); // Removes current URL from history and replaces it with a new URLwindow.location.assign("url"); // Adds new URL to the history stack and redirects to the new URL
window.history.back(); // Simulates a back button clickwindow.history.go(-1); // Simulates a back button clickwindow.history.back(-1); // Simulates a back button clickwindow.navigate("page.html"); // Same as window.location="url"

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

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

META刷新

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

META位置

<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>

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

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

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

以下是重定向到其他页面的代码,超时时间为10秒。

<script>function Redirect(){window.location="http://www.adarshkr.com";}
document.write("You will be redirected to a new page in 10 seconds.");setTimeout('Redirect()', 10000);</script>

你也可以这样做,点击一个按钮使用location.assign:

<input type="button" value="Load new document" onclick="newPage()"><script>function newPage() {window.location.assign("http://www.adarshkr.com")}</script>

使用jQuery函数:

$.extend({redirectPost: function(location, args) {var form = '';$.each(args, function(key, value) {form += '<input type="hidden" name="' + key + '" value="' + value + '">';});$('<form action="' + location + '" method="POST">' + form + '</form>').appendTo($(document.body)).submit();}});

在你的代码中,你这样使用它:

$.redirectPost("addPhotos.php", {pimreference:  $("#pimreference").val(), tag: $("#tag").val()});

使用jQuery/JavaScript重定向用户

通过使用jQuery或JavaScript中的位置对象,我们可以将用户重定向到另一个网页。

在jQuery

将用户从一个页面重定向到另一个页面的代码是:

var url = 'http://www.example.com';$(location).attr('href', url);

在javascript

将用户从一个页面重定向到另一个页面的代码是:

var url = 'http://www.example.com';window.location.href = url;

var url = 'http://www.example.com';window.location = url;

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


要重定向到使用JavaScript的页面:

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

如果您需要延迟:

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

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

$('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 redirectwindow.location.href = "/contact/";},500);});

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

我只需要用另一个更新的jQuery方法来更新这个荒谬的东西:

var url = 'http://www.fiftywaystoleaveyourlocation.com';$(location).prop('href', url);

Javascript:

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

jQuery:

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

只需在javascript中,您就可以使用以下命令重定向到特定页面:

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

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

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

使用jQuery:

$(window).attr("location","http://www.test.com");

在JavaScript和jQuery中,我们使用以下代码来重定向页面:

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

但是你可以在jQuery中创建一个函数来重定向页面:

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

并调用此函数:

jQuery(window).redirect("http://stackoverflow.com/")

重定向页面或URL的jQuery代码

第一种方式

这是用于重定向页面的jQuery代码。因为,我已经将此代码放在$(documents). ready()函数上,它将在页面加载后立即执行。

var url = "http://stackoverflow.com";$(location).attr('href',url);

您甚至可以将URL直接传递给attr()方法,而不是使用变量。

第二条路

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

你也可以这样编码(两者内部相同):

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

如果您对window.location和window.location.href之间的区别感到好奇,那么您可以看到后者显式设置href属性,而前者隐式设置。由于window.location返回一个对象,该对象默认设置其.href属性。

第三条路

还有另一种使用JavaScript重定向页面的方法,即window.location对象的replace()方法。您可以将新URL传递给replace()方法,它将模拟HTTP重定向。顺便说一句,请记住window.location.replace()方法不会将原始页面放入会话历史记录中,这可能会影响后退按钮的行为。有时,这就是您想要的,所以请小心使用它。

// Doesn't put originating page in historywindow.location.replace("http://stackoverflow.com");

第四条路

location.assign()方法在浏览器窗口中加载一个新文档。

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

assign()replace()方法的区别在于location.replace()方法从文档历史中删除当前URL,因此无法导航回原始文档。在这种情况下,您不能使用浏览器返回按钮。如果您想避免这种情况,您应该使用location.assign()方法,因为它会在浏览器中加载一个新文档。

第五条路

likeattr()方法(jQuery 1.6引入后)

var url = "http://stackoverflow.com";$(location).prop('href', url);

从客户端进行重定向的所有方式:

<!DOCTYPE html><html><head><title>JavaScript and jQuery example to redirect a page or URL </title></head><body><div id="redirect"><h2>Redirecting to another page</h2></div>
<script src="scripts/jquery-1.6.2.min.js"></script><script>// JavaScript code to redirect a URLwindow.location.replace("http://stackoverflow.com");// window.location.replace('http://code.shouttoday.com');
// Another way to redirect page using JavaScript
// window.location.assign('http://code.shouttoday.com');// window.location.href = 'http://code.shouttoday.com';// document.location.href = '/relativePath';
//jQuery code to redirect a page or URL$(document).ready(function(){//var url = "http://code.shouttoday.com";//$(location).attr('href',url);// $(window).attr('location',url)//$(location).prop('href', url)});</script></body></html>

ECMAScript 6+jQuery,85字节

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

请不要杀我,这是个玩笑,这是个玩笑

这确实“提供了问题的答案”,从某种意义上说,它要求“使用jQuery”的解决方案,在这种情况下,这需要以某种方式迫使它进入方程。

费里比格显然需要解释这个笑话(仍然在开玩笑,我相信评论表上的选项有限),所以不用多说:

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

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

该函数被命名为jQueryCode,尽管它没有任何jQuery内容,调用函数somethingCode真是太可怕了,尤其是当某些东西甚至不是语言时。

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

基本上,畏缩。

我已经使用了JavaScript的函数重定向()。它正在工作。

<script type="text/javascript">$(function () {//It's similar to HTTP redirectwindow.location.replace("http://www.Technomark.in");
//It's similar to clicking on a linkwindow.location.href = "Http://www.Technomark.in";})</script>

您可以使用:

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

replace()方法不会将原始页面保存在会话历史记录中,因此用户无法使用后退按钮返回并再次获得重定向。注意:在这种情况下,浏览器后退按钮将被停用。

但是,如果您想要与单击链接相同的效果,则应该使用:

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

在这种情况下,浏览器后退按钮将处于活动状态。

这很容易实现。您可以使用:

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

这将记住上一页的历史记录。因此可以通过单击浏览器的后退按钮返回。

或:

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

此方法不记住上一页的历史记录。在这种情况下,后退按钮将被禁用。

您可以使用以下方法重定向页面:

  1. 通过在head-<meta http-equiv="refresh" content="0;url=http://your-page-url.com" />中使用元标记。请注意,content="0;…用于在您需要多少秒后重定向页面

  2. 通过使用JavaScript:window.location.href = "http://your-page-url.com";

  3. 使用jQuery:$(location).attr('href', 'http://yourPage.com/');

用途:

function redirect(a) {location = a}

然后用:redirect([url]);

location之后不需要href,正如它所暗示的那样。

jQuery中,使用$(location).attr('href', url)

$(document).ready(function(){var url = "https://www.youtube.com/watch?v=JwMKRevYa_M";$(location).attr('href', url); // Using this});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

In raw JavaScript, there are a number of ways to achieve that:

window.location.href="https://www.youtube.com/watch?v=JwMKRevYa_M";

-显式设置href属性。

window.location = "http://www.GameOfThrones.com";

由于window.location返回一个对象,默认情况下设置其. href属性。

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

-用新窗口替换当前窗口的位置。

self.location = "http://www.somewebsite.com";

-设置当前窗口本身的位置。

以下是一段时间(3秒)后JavaScript重定向的示例:

<script>setTimeout(function() {window.location.href = "https://www.youtube.com/";}, 3000);</script>

<script type="text/javascript">if(window.location.href === "http://stackoverflow.com") {window.location.replace("https://www.google.co.in/");}</script>

使用JavaScript:

方法一:

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

方法二:

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

使用jQuery:

方法1:$(位置)

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

方法2:可重用函数

jQuery.fn.redirectTo = function(url){window.location.href = url;}
jQuery(window).redirectTo("http://google.com");

基本上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");

我也在下面的图片中展示了它们:

location.replacelocation.assign

我只是添加另一种方式:

要将您网站的任何特定页面/链接重定向到另一个页面,只需添加这行代码:

<script>if(window.location.href == 'old_url'){window.location.href="new_url";}
// Another URL redirectif(window.location.href == 'old_url2'){window.location.href="new_url2";}</script>

举个真实的例子,

<script>if(window.location.href == 'https://old-site.com'){window.location.href="https://new-site.com";}
// Another URL redirectif(window.location.href == 'https://old-site.com/simple-post.html'){window.location.href="https://new-site.com/simple-post.html";}</script>

通过使用这个简单的代码,您可以重定向整个网站或任何单个页面。

  1. location.assign():

    通过传递路径来分配路由路径…分配将为您提供历史记录,即使在分配路径之后。

    使用方法:值应该传递给它。

    例如:location.assign("http://google.com")

    在此处输入图像描述

  2. location.href

    可以定义给它一个路径…一旦设置,它将重定向到给定的路径,它将保留历史…

    使用方法:值应该分配给它。

    例如:location.href = "http://google.com"

  3. location.replace():

    如果您不想保留历史记录,它将有助于替换路径。一旦您替换其路径,它就不会为您提供历史记录。

    使用方法:值应该传递给它。

    例如:location.replace("http://google.com")

    在此处输入图像描述


assign()href是相似的,两者都可以保存历史。assign通过传递值来工作,href通过赋值来工作。

您可以使用JavaScript本身实现它,而无需使用jQuery通过分配,

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

你可以像下面这样使用jQuery实现类似的事情。它会像上面一样做完全相同的事情,

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

你可以很容易地理解两者之间的区别。

这里是位置对象,

来自chrome的定位API

如果您想重定向到同一应用程序中的路由,只需

window.location.pathname = '/examplepath'

这将是我们要走的路。

单页应用程序,在同一应用程序路由内

window.location.pathname = '/stack';

JavaScript:

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

jQuery:

$(location).attr('href', "http://www.stack.com");$(window).attr('location', "http://www.stack.com");

角4

import { Router } from '@angular/router';export class NavtabComponent{constructor(private router: Router) {}this.router.navigate(['bookings/taxi']);}

根据我的工作经验,JavaScript重定向要好得多。

这取决于您想如何更改位置。如果您想在用户历史记录中登录您的网站,请使用window.location.href='ur website';。否则,要在不登录历史记录的情况下进行操作,请使用window.location.replace("your website");

使用location.replace()将重定向您,但不保存上一页的历史记录。这在提交表单时使用更好。

但是当你想保留你的历史时,你必须使用location.href=//path

示例:

// Form with stepsdocument.getElementById('#next').onclick = function() {window.location.href='/step2' // Iteration of steps;}
// Go to next stepdocument.getElementById('#back').onclick = function() {window.history.back();}
// Finishdocument.getElementById('#finish').onclick = function() {window.location.href = '/success';}
// On success pagewindow.onload = function() {setTimeout(function() {window.location.replace('/home'); // I can't go back to success page by pressing the back button},3000);}

您可以在脚本部分中为按钮单击事件编写URL. Action,如下所示。

function onclick() {location.href = '@Url.Action("Index", "Home")';}

如果您更喜欢使用纯JavaScript,我意识到使用document.location.href = "https://example.com"window.location.href = "https://example.com"会导致Firefox中的兼容性问题。相反,请尝试使用:

location.href = "https://example.com";location.replace("http://example.com");

在我的情况下已经解决了这个问题。祝你好运!

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 pagewindow.location.hostname; // Returns the domain name of the web hostwindow.location.pathname; // Returns the path and filename of the current pagewindow.location.protocol; // Returns the web protocol used (http: or https:)window.location.assign; // Loads a new documentwindow.location.replace; // RReplace the current location with new one.