jq选项卡切换数据加载,更新select2 的值,触发查询功能

点击选项卡,赋值select2下拉框选中的值,触发查询功能

jq选项卡切换数据加载,更新select2 的值,触发查询功能_第1张图片

试用期员工@(ViewBag.Internships??0)

 

function Person(status) {
        status = status || "";
        if (status === "") {
            $('.workingState option:eq(0)').prop("selected", true);
            $(".workingState select").trigger("change");
        } else {
            $(`.workingState option[value="${status}"]`).prop("selected", true);
            $(".workingState select").trigger("change");
        }
        $table.bootstrapTable('refresh', { silent: true, pageNumber: 1 });
    }

 

你可能感兴趣的:(select2)