$('.required:not(.final_price)').each(function() {
if (!$(this).val()) {
error_count ++;
if ($(this).hasClass('sku')) {
layer.tips('請填寫規格',$(this));
} else if($(this).hasClass('visit_price')) {
layer.tips('請填寫預付款',$(this));
} else {
layer.tips('請填寫內容',$(this));
}
return false;
}
});
