<td>
<input type="checkbox" class="product1" name="product" value="SCAN"
<c:forEach var="merproduct" items="${merchant.product}">
<c:if test="${merproduct=='SCAN'}"> checked="checked"</c:if>
</c:forEach>
>扫码通道
<input type="checkbox" class="product1" name="product" value="POS"
<c:forEach var="merproduct" items="${merchant.product}">
<c:if test="${merproduct=='POS'}"> checked="checked"</c:if>
</c:forEach>
>POS通道
</td>
if($(".product1:checked").length==0){
alert("通道类型不能为空")
return;
}
注意:选择器冒号前面不能有空格,否则会涉及到从所有标签里面找,而不是从 .product1 筛选后中的找