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

  

 

猜你喜欢

转载自www.cnblogs.com/webttt/p/11412360.html