...
|
...
|
@@ -260,7 +260,7 @@ edit.prototype={ |
|
|
var value =$.trim($(this).val());
|
|
|
var name=$(this).attr("placeholder")&&!(/^\d+$/.test($(this).attr("placeholder")))?$(this).attr("placeholder").replace(/请填写/g,''):$(this).parents(".form-group").find("label").text().replace(/\*/g,'');
|
|
|
|
|
|
if (id&&$(this).attr("required")&&+value==-1) {
|
|
|
if (id&&$(this).attr("required")&&(+value==-1||+value=="")) {
|
|
|
err.push("<p>请选择 "+name+"</p>");
|
|
|
}
|
|
|
});
|
...
|
...
|
|