美文网首页关于html,js,css平时遇到的问题
layui table渲染时,select默认值改变

layui table渲染时,select默认值改变

作者: 刘laoliu | 来源:发表于2020-06-23 17:00 被阅读0次

当渲染选择了select,重加载渲染table时,select会默认。为了改变这个默认值,变成自己先择的值。代码如下:

form.on('select(selectFilter)', function (data) {
            
            table.reload("idTest", {
                where: {methodseq:data.value},
                page: {curr: 1},
                done:function(res, curr, count){
                    layui.each($("select[name='methodseq']"), function (index, item) {
                        var elem = $(item);
                        console.log(elem.val());
                        elem.val(data.value);
                    });

                    form.render('select');
                }
            });
        });

相关文章

网友评论

    本文标题:layui table渲染时,select默认值改变

    本文链接:https://www.haomeiwen.com/subject/eevhfktx.html