一、驗證radio、checkbox
form.verify({ mustradio: function (value, item) { //單選按鈕必選 var val = $(item).parent().find("input[name='answer']:checked").val(); if (typeof (val) == "undefined") { return "請選擇答案"; } }, mustcheck: function (value, item) { //復選框必選 var val = $(item).parent().find("input[type='checkbox']:checked").val(); if (typeof (val) == "undefined") { return "請選擇答案"; } } });