From 83ce0d3817dbd455186f26565c6a5d886362c8a4 Mon Sep 17 00:00:00 2001 From: augushong <31880431+augushong@users.noreply.github.com> Date: Fri, 28 Mar 2025 17:20:02 +0800 Subject: [PATCH] =?UTF-8?q?feat(form):=20=E4=BC=98=E5=8C=96=20lay-ignore?= =?UTF-8?q?=20=E7=9A=84=E5=88=A4=E6=96=AD=E9=80=BB=E8=BE=91=20(#2585)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: 修改ignore的判断逻辑;增加ignore的开发案例; * Update src/modules/form.js Co-authored-by: morning-star <26325820+Sight-wcg@users.noreply.github.com> * Update src/modules/form.js Co-authored-by: morning-star <26325820+Sight-wcg@users.noreply.github.com> * Update src/modules/form.js Co-authored-by: morning-star <26325820+Sight-wcg@users.noreply.github.com> * Update src/modules/form.js Co-authored-by: morning-star <26325820+Sight-wcg@users.noreply.github.com> * test(form): 优化 lay-ignore 示例布局 * docs(form): 优化 lay-ignore 文档说明 * fix(form): 修复 tips 提示风格时对 lay-ignore 目标元素的判断问题 --------- Co-authored-by: 贤心 <3277200+sentsim@users.noreply.github.com> Co-authored-by: morning-star <26325820+Sight-wcg@users.noreply.github.com> --- docs/form/index.md | 36 ++++++++++---------- examples/form.html | 83 +++++++++++++++++++++++++++++++++------------ src/css/layui.css | 1 - src/modules/form.js | 17 +++++----- 4 files changed, 87 insertions(+), 50 deletions(-) diff --git a/docs/form/index.md b/docs/form/index.md index 5b7facbf..59ffed55 100644 --- a/docs/form/index.md +++ b/docs/form/index.md @@ -2,7 +2,7 @@ title: 表单组件 form toc: true --- - + # 表单组件 🔥 > 表单组件`form`是包含输入框、选择框、复选框、开关、单选框等表单项组件的集合,主要用于对表单域进行各类动态化渲染和相关的交互操作。`form`是 Layui 最常用的组件之一。 @@ -121,7 +121,7 @@ form 还可以借助*栅格*实现更灵活的响应式布局。 | lay-append-to 2.9.12+ 实验性 | `body` | 是否将 select 面板追加到 body 元素中。`` 元素 **私有属性** | | lay-submit | 无需值 | 设置元素(一般为` +

diff --git a/src/css/layui.css b/src/css/layui.css index 9a2a9bde..316f2031 100644 --- a/src/css/layui.css +++ b/src/css/layui.css @@ -766,7 +766,6 @@ hr.layui-border-black{border-width: 0 0 1px;} .layui-form select, .layui-form input[type=checkbox], .layui-form input[type=radio]{display: none;} -.layui-form *[lay-ignore]{display: initial;} .layui-form-item{position: relative; margin-bottom: 15px; clear: both;} .layui-form-item:after{content:'\20'; clear: both; display: block; height:0;} diff --git a/src/modules/form.js b/src/modules/form.js index d736ece8..dee5cc28 100644 --- a/src/modules/form.js +++ b/src/modules/form.js @@ -863,7 +863,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){ var selected = $(select.options[select.selectedIndex]); // 获取当前选中项 var optionsFirst = select.options[0]; - if(typeof othis.attr('lay-ignore') === 'string') return othis.show(); + if(othis.closest('[lay-ignore]').length > 0) return othis.show(); var isSearch = typeof othis.attr('lay-search') === 'string' var isCreatable = typeof othis.attr('lay-creatable') === 'string' && isSearch @@ -1028,7 +1028,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){ // 若为开关,则对 title 进行分隔解析 title = skin === 'switch' ? title.split('|') : [title]; - if(typeof othis.attr('lay-ignore') === 'string') return othis.show(); + if(othis.closest('[lay-ignore]').length > 0) return othis.show(); // 处理 IE8 indeterminate 属性重新定义 get set 后无法设置值的问题 if(needCheckboxFallback){ @@ -1111,7 +1111,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){ var disabled = this.disabled; var skin = othis.attr('lay-skin'); - if(typeof othis.attr('lay-ignore') === 'string') return othis.show(); + if(othis.closest('[lay-ignore]').length > 0) return othis.show(); if(needCheckboxFallback){ toggleAttribute.call(radio, 'lay-form-sync-checked', radio.checked); @@ -1300,13 +1300,12 @@ layui.define(['lay', 'layer', 'util'], function(exports){ if (verst) { // 提示层风格 if (verType === 'tips') { - layer.tips(errorText, function(){ - if(typeof othis.attr('lay-ignore') !== 'string'){ - if(isForm2Elem){ - return othis.next(); - } + layer.tips(errorText, function() { + if (othis.closest('[lay-ignore]').length > 0) { + return othis; + } else if(isForm2Elem) { + return othis.next(); } - return othis; }(), {tips: 1}); } else if(verType === 'alert') { layer.alert(errorText, {title: '提示', shadeClose: true});