真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

layer插件select選中默認(rèn)值的方法

再次更改代碼的時(shí)候,因?yàn)槌鞘邢吕斜硎菑臄?shù)據(jù)庫(kù)查出來(lái)的,所以這時(shí)候就想到了一起以前用到的一個(gè)方法:select重新渲染

我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站制作、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、揭陽(yáng)ssl等。為上千多家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的揭陽(yáng)網(wǎng)站制作公司

就是把未渲染的元素該怎么設(shè)置值還怎么設(shè)置值,然后把layer渲染出來(lái)的頁(yè)面樣式,從新再渲染一次, ,,

示例:[layui渲染文檔](http://www.layui.com/doc/modules/form.html#render)

  $("#userName).val("小明");
  ...
  $("#city").val("天劍山");
  ...一大堆需要設(shè)置的值,然后一個(gè)渲染,就可以了
  form.render(); //更新全部
  form.render('select'); //刷新select選擇框渲染

下面的廢棄?。。。。。。。。。。。。?!

/**
  * layui:select插件,默認(rèn)選中
  * ps:?jiǎn)蝹€(gè)下拉框
  * @param 下拉框的id
  * @param 想要讓選中的值:str
  */
  function layuiSelected(id,str){
    //0、設(shè)置select的值
    $("#"+id).attr("value",str);
    //0.1把select下的option的selected換成現(xiàn)在的
    $("#"+id).children("option").each(function(){
      if ($(this).text() == str) {
        $(this).attr("selected","selected");
      }else{
        if ($(this).attr("selected") == "selected") {
          $(this).removeAttr("selected");
        }
      }
    });
    //1、首先設(shè)置輸框
    $("#"+id).siblings("div[class='layui-unselect layui-form-select']").children("div[class='layui-select-title']").children("input").val(str);
    //2、其次,設(shè)置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");
        }
      }
    });
  }

以上這篇layer插件select選中默認(rèn)值的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。


本文標(biāo)題:layer插件select選中默認(rèn)值的方法
本文網(wǎng)址:http://weahome.cn/article/psjsij.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部