最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
layer插件select选中默认值的方法
时间:2022-06-25 15:46:18 编辑:袖梨 来源:一聚教程网
再次更改代码的时候,因为城市下拉列表是从数据库查出来的,所以这时候就想到了一起以前用到的一个方法:select重新渲染
就是把未渲染的元素该怎么设置值还怎么设置值,然后把layer渲染出来的页面样式,从新再渲染一次, ,,
示例: [layui渲染文档](http://www.layui.com/doc/modules/form.html#render)
$("#userName).val("小明"); ... $("#city").val("天剑山"); ...一大堆需要设置的值,然后一个渲染,就可以了 form.render(); //更新全部 form.render('select'); //刷新select选择框渲染
下面的废弃!!!!!!!!!!!!!!
/** * layui:select插件,默认选中 * ps:单个下拉框 * @param 下拉框的id * @param 想要让选中的值:str */ function layuiSelected(id,str){ //0、设置select的值 $("#"+id).attr("value",str); //0.1把select下的option的selected换成现在的 $("#"+id).children("option").each(function(){ if ($(this).text() == str) { $(this).attr("selected","selected"); }else{ if ($(this).attr("selected") == "selected") { $(this).removeAttr("selected"); } } }); //1、首先设置输框 $("#"+id).siblings("div[class='layui-unselect layui-form-select']").children("div[class='layui-select-title']").children("input").val(str); //2、其次,设置dl下的dd $("#"+id).siblings("div[class='layui-unselect layui-form-select']").children("dl").children("dd").each(function(){ if ($(this).text() == str){ if (!$(this).hasClass("layui-this")) { $(this).addClass("layui-this"); $(this).click(); } return true; }else{ if ($(this).hasClass("layui-this")) { $(this).removeClass("layui-this"); } } }); }
相关文章
- 宝可梦大集结新手宝可梦怎么选 新手宝可梦推荐介绍 11-07
- 星露谷物语怎么跨平台联机 11-07
- 《使命召唤:黑色行动6》近战专家成就攻略 11-07
- 《使命召唤:黑色行动6》派对结束成就攻略 11-07
- 《使命召唤:黑色行动6》寻找与毁灭成就攻略 11-07
- 《使命召唤:黑色行动6》破坏性觉醒成就攻略 11-07