Browse Source

Merge pull request #1215 from layui/main

同步最新 PR
pull/1216/head
贤心 2 years ago committed by GitHub
parent
commit
46c53ac3cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/modules/form.js

4
src/modules/form.js

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

Loading…
Cancel
Save