js跳转页面

Posted webttt

tags:

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

//跳转去另一页面
function goToOtherWeb(mn)
  var url = prefix + "/otherweb/" + mn+ "";
  window.location.href = url;



//springboot后台获取
@GetMapping("/otherweb/mn")
	public String otherweb(@PathVariable("mn") String mn, ModelMap mmap) 
              //处理

  

 

以上是关于js跳转页面的主要内容,如果未能解决你的问题,请参考以下文章

js 怎么监听到页面关闭或页面跳转事件

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

js 怎么监听到页面关闭或页面跳转事件

js想跳转页面后触发一个onload事件怎么写

js页面跳转的问题(跳转到父页面最外层页面本页面)

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