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) {
              //处理
}

  

 

posted on 2019-08-26 14:29  七七2020  阅读(307)  评论(0编辑  收藏  举报

导航