jquery跳转到指定页面有几种方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery跳转到指定页面有几种方式相关的知识,希望对你有一定的参考价值。

例:<img src="img/1.jgp" />;
//点击图片事件
$("img").click(function()
//点击图片后发送跳转到指定页面的事件。
window.location.href="输入另一个页面的链接";
)
参考技术A

    location.href=url;

    <a href=url></a>

    window.open()

本回答被提问者采纳

详解vue 路由跳转四种方式 (带参数)

参考技术A

this.$router.go(n)

向前或者向后跳转n个页面,n可为正整数或负整数

ps : 区别

this.$router.push

跳转到指定url路径,并想history栈中添加一个记录,点击后退会返回到上一个页面

this.$router.replace

跳转到指定url路径,但是history栈中不会有记录,点击返回会跳转到上上个页面 (就是直接替换了当前页面)

this.$router.go(n)

向前或者向后跳转n个页面,n可为正整数或负整数

完整url可以用 window.location.href
路由路径可以用 this.$route.path
路由路径参数 this.$route.params 例如:/user/:id → /user/2044011030 → this.$route.params.id
路由查询参数 this.$route.query 例如:/user/search?name=sf → this.$route.query.name

参考: https://www.cnblogs.com/bydzhangxiaowei/p/12000458.html
https://blog.csdn.net/a350110085/article/details/90053111

以上是关于jquery跳转到指定页面有几种方式的主要内容,如果未能解决你的问题,请参考以下文章

如何用js添加点击事件,点击后跳转到指定动态页面

详解vue 路由跳转四种方式 (带参数)

js如何在指定页面跳转到另一指定页面

Thinkphp后台如何用js跳转到指定页面 怎么写

点击事件然后页面跳转到指定DOM元素的位置

JS / jQuery 实现页面跳转到指定位置-锚点