深圳鹏程之光园林有限公司 发表于 2024-1-23 21:55:44

Layui select实现主动赋值和触发选择事件,及radio实现可取消

Layui select赋值,并主动触发选择事件

// Layui select赋值,并主动触发选择事件
// Input: selectId:ID选择器,selectFilter:lay-filter名称,value:需要的赋值,text:显示文本值
function setSelect(selectId, selectFilter, value, text){
    //赋值
    $(selectId).find("option").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.cnblogs.com/wcwnina/p/17981885
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: Layui select实现主动赋值和触发选择事件,及radio实现可取消