XXX平台要实现一个功能,公告弹出页面上使用复选框设置不再通知此类公告。
原理:<input type="checkBox" id="isSelect" name="isSelect" value="10" onclick="javascript:noTips();"/>,checkBox选中后提交表单,那么struts2的Action中isSelect就为'10',不选中提交表单isSelect为null。
1.jsp页面
内容为字符串
$.ajax({
type:'post',url:'Notice_noTipsNotice',data:formParam,cache:false,dataType:'json',success:function(data){
}
});
}
Box不
提示公告,需要
修改TBussinessSet中的
屏蔽状态,ajax异步请求
*/
public void noTipsNotice(){
try {
PrintWriter out = this.getResponse().getWriter();
bussinessSet = BussinessSetService.queryById(getUserId());
String state = "";
if(isSelect==null){//noticeType==null没有选中check<a href="https://www.f2er.com/tag/Box/" target="_blank" class="keywords">Box</a>
state = "11";
}
else{
state = "10";
}
if("25".equals(noticeType)){
bussinessSet.setSaleBack(state);
}
else if("63".equals(noticeType)){
bussinessSet.setRemittanceBank(state);
}
else if("64".equals(noticeType)){
bussinessSet.setRemittanceOnline(state);
}
BussinessSetService.update(bussinessSet);
out.print("");
} catch (Exception e) {
log.error(e.fillInStackTrace());
}
}