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