1 Star 0 Fork 856

erick / MES-MOM

forked from mes / MES-MOM 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
layuiSelect.md 237 Bytes
一键复制 编辑 原始数据 按行查看 历史
花豹 提交于 2020-03-20 09:53 . 新增layui下拉框初始化笔记

#初始化下拉框数据

var data = [
    {name: 'a', value: '1'},
    {name: 'b', value: '2'},
    {name: 'c', value: '3'}
];

$.each(data, function (index, item) {
    $('#js-id').append(new Option(item.name, item.value));
});
Java
1
https://gitee.com/erick2020/MES-Springboot.git
git@gitee.com:erick2020/MES-Springboot.git
erick2020
MES-Springboot
MES-MOM
master

搜索帮助