欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

select2 ajax 远程获取下拉框默认显示数据, 无需输入

程序员文章站 2022-03-09 10:05:00
...
	$("#domain_user").select2({
		placeholder : '请选择',
		minimumInputLength : 1, //默认最少输入1位
		language : "zh-CN",
		width : "137px",
		allowClear : true,
		ajax : {
			type : "post",
			url : "tudstat/getUserData",
			dataType : 'json',
			delay : 250,
			data : function(params) {
minimumInputLength   参数

删掉该参数就默认会查询数据了,不需要输入值查询