91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

layer插件select選中默認值的方法

發布時間:2020-08-30 22:11:07 來源:腳本之家 閱讀:306 作者:樹林中的啄木鳥 欄目:web開發

再次更改代碼的時候,因為城市下拉列表是從數據庫查出來的,所以這時候就想到了一起以前用到的一個方法: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");
        }
      }
    });
  }

以上這篇layer插件select選中默認值的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石楼县| 永川市| 阿尔山市| 张家港市| 天水市| 彭泽县| 巢湖市| 鄂伦春自治旗| 浮梁县| 盘山县| 嫩江县| 沈阳市| 观塘区| 梅州市| 三明市| 鄯善县| 沁阳市| 恭城| 西峡县| 赤水市| 阳曲县| 平果县| 敖汉旗| 洞头县| 虞城县| 改则县| 江川县| 北川| 伊吾县| 青铜峡市| 罗甸县| 习水县| 丰城市| 凤城市| 加查县| 浏阳市| 滕州市| 仁化县| 洮南市| 安新县| 喜德县|