0


js路由跳转的几种方式以及介绍

第一种:(跳转到b.html)

<scriptlanguage="javascript"type="text/javascript">
   window.location.href="b.html";</script>

第二种:(返回上一页面)

<scriptlanguage="javascript">
   window.history.go(-1);</script>

第三种:

<scriptlanguage="javascript">
   window.navigate("b.html");</script>

Location href 属性

href 属性是一个可读可写的字符串,可设置或返回当前显示的文档的完整 URL。

Location 对象

Location 对象包含有关当前 URL 的信息。

Location 对象是 window 对象的一部分,可通过 **window.location.**xxx 格式的相关属性对其进行访问。

href 是返回一个完整的url地址 ( 返回完整的URL)

History 对象

History 对象包含用户(在浏览器窗口中)访问过的 URL。

History 对象是 window 对象的一部分,可通过 window.history 属性对其进行访问。

History 对象方法

方法说明back()加载 history 列表中的前一个 URLforward()加载 history 列表中的下一个 URLgo()加载 history 列表中的某个具体页面

Screen 对象

Screen 对象包含有关客户端显示屏幕的信息。

Screen 对象属性

属性说明availHeight返回屏幕的高度(不包括Windows任务栏)availWidth返回屏幕的宽度(不包括Windows任务栏)colorDepth返回目标设备或缓冲器上的调色板的比特深度height返回屏幕的总高度pixelDepth返回屏幕的颜色分辨率(每象素的位数)width返回屏幕的总宽度

使用 JS 实现页面跳转的几种方式总结

第一种:使用JS跳转页面

1)跳转带参

<scriptlanguage="javascript"type="text/javascript">
        window.location.href="jingxuan.do?backurl="+ window.location.href;</script>

2)跳转无参

<script>window.location.href='http://blog.yoodb.com';</script>

第二种:返回上一次预览界面

<scriptlanguage="javascript">alert("返回");
   window.history.back(-1);</script>

HTML页面嵌套

<ahref="javascript:history.go(-1)">返回上一步</a><ahref="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>

第三种:button按钮添加事件跳转

<input name="前端知音" type="button" value="前端知音" onClick="location.href='login.do'">

第四种:在新窗口打开

<ahref="javascript:"onClick="window.open('login.do','','height=500,width=611,scrollbars=yes,status=yes')">新窗口</a>

第五种:通过meta设置跳转页面

<head><!--只刷新不跳转 --><metahttp-equiv="refresh"content="5"><!--定时跳转 --><metahttp-equiv="refresh"content="5;url=index.html"></head>

JavaScript Window Location

window.location 对象用于获得当前页面的地址 (URL),并把浏览器重定向到新的页面。

标签: javascript 前端 html

本文转载自: https://blog.csdn.net/Ruiqi8/article/details/128256647
版权归原作者 睿麒 所有, 如有侵权,请联系我们删除。

“js路由跳转的几种方式以及介绍”的评论:

还没有评论