|
|
|
@ -136,7 +136,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){
|
|
|
|
|
init_name = item.name.replace(/^(.*)\[\]$/, '$1['+ (nameIndex[key]++) +']'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(/^checkbox|radio$/.test(item.type) && !item.checked) return; // 复选框和单选框未选中,不记录字段
|
|
|
|
|
if(/^(checkbox|radio)$/.test(item.type) && !item.checked) return; // 复选框和单选框未选中,不记录字段
|
|
|
|
|
field[init_name || item.name] = item.value; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -848,7 +848,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){
|
|
|
|
|
|
|
|
|
|
// 是否属于美化替换后的表单元素
|
|
|
|
|
var isForm2Elem = item.tagName.toLowerCase() === 'select' || ( |
|
|
|
|
/^checkbox|radio$/.test(item.type) |
|
|
|
|
/^(checkbox|radio)$/.test(item.type) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
errorText = errorText || rule[1]; |
|
|
|
|