jquery 纯JS设置select下拉框,并默认选中第一个

瘦欲@ 提交于 2020-03-18 13:26:01
//html页面<select id="payWay" class="easyui-combobox"
                                    name="payWay" style="width: 100%;"
                                    data-options="required:true,editable:false">
                                </select>

 

 

 

//JS文件function getPayedWay(){
    $.ajax({
        type : "GET",
        url : top.baseUrl + "auction/settlement_bail/get/payed/type",
        data : null,
        dataType : 'json',
        success : function(result) {
            var typeStr = '';
            $.each(result, function(index, temp) {
                    typeStr += '<option value=' + temp.id + '>' + temp.name
                    + '</option>';
            });
            $('#payWay').html(typeStr);
            $('#payWay').combobox({});
            var data = $('#payWay').combobox('getData');
            $("#payWay").combobox('select',data[0].value);
        },
        error : function(result) {

        }
    });
}

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!