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跳转页面的主要内容,如果未能解决你的问题,请参考以下文章