在dialog的content中嵌入select的獲取選中值方法
阿新 • • 發佈:2019-01-17
oda log fun 修改 返回 .sh form modal find
var shortNameList = "<select><option value=‘1‘>1</option><option value=‘2‘>2</option></select>"; top.dialog({ title: "修改賬單的客戶簡稱", width: 400, content: ‘<div class="layui-form-item" style="margin-top:15px;"><label class= "layui-form-label" style="width:15% !important;" > 客戶簡稱:</label>‘ + shortNameList+‘</div>‘, ok: function () { var newShortName = this._$("content").find("select").val(); //獲取content中的select的選中值 return false; //返回false時,點擊按鈕不會關閉模態對話窗 } }).showModal();
在dialog的content中嵌入select的獲取選中值方法