XXX 플랫폼에 기능을 구현하려는 경우 공지 팝업 페이지의 확인란을 사용하여 해당 공지에 대한 알림을 설정하지 않도록 설정하세요.
원칙: 7b966fa1cac79bb6e40b7ac145b8ac9f, 체크박스를 선택한 후 양식을 제출한 다음 struts2 isSelect의 Action은 '10'입니다. 제출 양식이 선택되지 않은 경우 isSelect는 null입니다.
1.jsp 페이지
<form id="form1"> <div class="jf_tanchu"> <div class="jf_tanchutit">${ bussinessNotice.noticeTitle}</div> <div class="jf_tanchubox"> <div class="jf_tanchubox_right"> 公告类型:<v:dcolor code="${ bussinessNotice.noticeType}"/> 发布时间:<fmt:formatDate value="${ bussinessNotice.createDate}" pattern="yyyy-MM-dd"/> </div> ${bussinessNotice.noticeInfo} </div> </div> <s:if test="bussinessNotice.noticeType=='25'||bussinessNotice.noticeType=='63'||bussinessNotice.noticeType=='64'"> <div> <input type="hidden" name="noticeType" value="${bussinessNotice.noticeType}"/> <input type="checkbox" id="isSelect" name="isSelect" value="${bussinessNotice.noticeType}" onclick="javascript:noTips();"/> <label for="isSelect">不再通知此类公告</label> </div> </s:if> </form>
2.js 코드
function noTips(){ var formParam = $("#form1").serialize();//序列化表格内容为字符串 $.ajax({ type:'post', url:'Notice_noTipsNotice', data:formParam, cache:false, dataType:'json', success:function(data){ } }); }
3.공지사항액션코드
/** * checkbox不提示公告,需要修改TBussinessSet中的屏蔽状态,ajax异步请求 */ public void noTipsNotice(){ try { PrintWriter out = this.getResponse().getWriter(); bussinessSet = BussinessSetService.queryById(getUserId()); String state = ""; if(isSelect==null){//noticeType==null没有选中checkbox 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()); } }