<input id="ispay" name="ispay" type="checkbox" value="${pd.ispay }" onchange="showChild();" <c:if test="${pd.ispay == 1}">checked="checked"</c:if> >
input checkbox在onchange为未勾选时候通过js改变其值为0,但是没有勾选时候是不会提交数据到后台的,也就是说后台只会收到null,这时候就可以通过判断其为null时候取0值。
<input id="ispay" name="ispay" type="checkbox" value="${pd.ispay }" onchange="showChild();" <c:if test="${pd.ispay == 1}">checked="checked"</c:if> >
input checkbox在onchange为未勾选时候通过js改变其值为0,但是没有勾选时候是不会提交数据到后台的,也就是说后台只会收到null,这时候就可以通过判断其为null时候取0值。