优化 form 匹配复选框和单选框的正则表达式

pull/1213/head
morning-star 2023-03-19 00:23:40 +08:00 committed by GitHub
parent 701c48d844
commit 9b6426e089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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];