mirror of https://github.com/layui/layui
fix(form): 修复赋值 (#2503)
parent
ab631a6bfe
commit
7560b87520
|
@ -113,7 +113,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){
|
|||
var itemElem = itemForm.find('[name="'+ key +'"]');
|
||||
|
||||
// 如果对应的表单不存在,则不执行
|
||||
if(!itemElem[0]) return;
|
||||
if(!itemElem[0]) continue;
|
||||
type = itemElem[0].type;
|
||||
|
||||
// 如果为复选框
|
||||
|
|
Loading…
Reference in New Issue