mirror of
https://gitee.com/layui/layui.git
synced 2026-01-28 19:11:26 +08:00
fix(form): 修复赋值 (#2503)
This commit is contained in:
@@ -113,7 +113,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){
|
|||||||
var itemElem = itemForm.find('[name="'+ key +'"]');
|
var itemElem = itemForm.find('[name="'+ key +'"]');
|
||||||
|
|
||||||
// 如果对应的表单不存在,则不执行
|
// 如果对应的表单不存在,则不执行
|
||||||
if(!itemElem[0]) return;
|
if(!itemElem[0]) continue;
|
||||||
type = itemElem[0].type;
|
type = itemElem[0].type;
|
||||||
|
|
||||||
// 如果为复选框
|
// 如果为复选框
|
||||||
|
|||||||
Reference in New Issue
Block a user