Layui select赋值,并主动触发选择事件
// Layui select赋值,并主动触发选择事件 // Input: selectId:ID选择器,selectFilter:lay-filter名称,value:需要的赋值,text:显示文本值 function setSelect(selectId, selectFilter, value, text){ //赋值 $(selectId).find("option[value="+value+"]").prop("selected",true); $(selectId).parent().find(".layui-select-title").find("input").val(text); //触发事件 layui.event("form", "select("+selectFilter+")", {value: value}); }
Layui radio点击事件,实现可选中可取消
// Layui radio点击事件,实现可选中可取消 // filterName:lay-filter名称 layui.form.on("radio(filterName)",function(data){ if($(this).attr("checked")) { $(this).removeAttr("checked") } else { $(this).attr("checked", "true") } layui.form.render(); });
文章来源地址https://www.toymoban.com/news/detail-817921.html
文章来源:https://www.toymoban.com/news/detail-817921.html
到了这里,关于Layui select实现赋值和主动触发选择时间,及radio实现可取消的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!