后台代码:
// 进入仪器list界面之前查看 是否是科研处人员
SessionContainer sc = (SessionContainer) session.getAttribute("SessionContainer");
Boolean b = sc.hasRole("KJGLC_FY");
model.addAttribute("b", b);
前台代码:
var b = "${b}";
var c = !!"${b}"
alert("开始测试 ");
if(c=="true"){
alert("他是个字符串");
}
if(c=="false"){
alert("他是个字符串");
}
if(c=true){
alert("改为boolean了 ");
}
if(c==false){
alert("改为boolean了 ");
}
链接:实用js装逼指南
http://www.iteye.com/news/31526