(VNĐ)
Dòng Sản Phẩm: Học Tập Asp.Net MVC
Hỗ trợ mua hàng
(Bán hàng cả Thứ Bảy và Chủ Nhật)
<input type="checkbox" name="test[]" />y
<input type="checkbox" name="test[]" />z
<button type="button" id="submit">Submit</button>
JQUERY:
$("#submit").on("click",function(){
if (($("input[name*='test']:checked").length)<=0) {
alert("You must check at least 1 box");
}
return true;
});