jQuery:填充下拉列表的最佳实践?

我经常看到的示例似乎不是最优的,因为它涉及到连接字符串,这似乎不是jQuery。它通常是这样的:

$.getJSON("/Admin/GetFolderList/", function(result) {
for (var i = 0; i < result.length; i++) {
options += '<option value="' + result[i].ImageFolderID + '">' + result[i].Name + '</option>';
}
});

有没有更好的办法?

394376 次浏览
$.getJSON("/Admin/GetFolderList/", function(result) {
var options = $("#options");
//don't forget error handling!
$.each(result, function(item) {
options.append($("<option />").val(item.ImageFolderID).text(item.Name));
});
});

上面我所做的是创建一个新的<option>元素并将其添加到options列表中(假设options是下拉元素的ID)。

PS我的javascript有点生锈,所以语法可能不完美

我使用选择框 jquery插件。它把你的例子变成:

$('#idofselect').ajaxAddOption('/Admin/GetFolderList/', {}, false);

当然——让options成为一个字符串数组,并在每次循环中使用.join('')而不是+=。在处理大量选项时,性能会有轻微的提升……

var options = [];
$.getJSON("/Admin/GetFolderList/", function(result) {
for (var i = 0; i < result.length; i++) {
options.push('<option value="',
result[i].ImageFolderID, '">',
result[i].Name, '</option>');
}
$("#theSelect").html(options.join(''));
});

是的。我一直都在用绳子。信不信由你,这是构建DOM片段的最快方法……现在,如果你只有几个选项,这并不重要——如果你喜欢这个风格,可以使用技巧德瑞演示。但请记住,你调用了浏览器的内部HTML解析器i*2次,而不仅仅是一次,并且每次都在循环中修改DOM…有足够多的选择。您最终将为此付出代价,尤其是在旧的浏览器上。

正如Justice所指出的,如果ImageFolderIDName不是正确的编码,这将会失败…

安德里亚斯·格雷奇很接近……它实际上是this(注意引用this而不是循环中的项):

var $dropdown = $("#dropdown");
$.each(result, function() {
$dropdown.append($("<option />").val(this.ImageFolderID).text(this.Name));
});

最快的方法是:

 $.getJSON("/Admin/GetFolderList/", function(result) {
var optionsValues = '<select>';
$.each(result, function(item) {
optionsValues += '<option value="' + item.ImageFolderID + '">' + item.Name + '</option>';
});
optionsValues += '</select>';
var options = $('#options');
options.replaceWith(optionsValues);
});

根据这个链接是最快的方法,因为当你做任何类型的DOM插入时,你把所有东西都包装在一个元素中。

$.get(str, function(data){
var sary=data.split('|');
document.getElementById("select1").options.length = 0;
document.getElementById("select1").options[0] = new Option('Select a State');
for(i=0;i<sary.length-1;i++){
document.getElementById("select1").options[i+1] = new Option(sary[i]);
document.getElementById("select1").options[i+1].value = sary[i];
}
});

或者:

var options = $("#options");
$.each(data, function() {
options.append(new Option(this.text, this.value));
});
我希望这对你有帮助。 我通常使用函数而不是每次都写所有的代码
    $("#action_selector").change(function () {


ajaxObj = $.ajax({
url: 'YourURL',
type: 'POST', // You can use GET
data: 'parameter1=value1',
dataType: "json",
context: this,
success: function (data) {
json: data
},
error: function (request) {
$(".return-json").html("Some error!");
}
});


json_obj = $.parseJSON(ajaxObj.responseText);


var options = $("#selector");
options.empty();
options.append(new Option("-- Select --", 0));
$.each(ajx_obj, function () {
options.append(new Option(this.text, this.value));
});
});
});

我读过使用文档片段是高性能的,因为它避免了每次插入DOM元素时页面回流,它也被所有浏览器(甚至ie6)很好地支持。

.
var fragment = document.createDocumentFragment();


$.each(result, function() {
fragment.appendChild($("<option />").val(this.ImageFolderID).text(this.Name)[0]);
});


$("#options").append(fragment);

我第一次读到这个在CodeSchool的JavaScript最佳实践课程

这是一个不同方法的比较,感谢作者。

我发现这是从jquery网站工作

$.getJSON( "/Admin/GetFolderList/", function( data ) {
var options = $("#dropdownID");
$.each( data, function(key, val) {
options.append(new Option(key, val));
});
});

ES6的其他方法

fetch('https://restcountries.eu/rest/v1/all')
.then((response) => {
return response.json()
})
.then((countries) => {
var options = document.getElementById('someSelect');
countries.forEach((country) => {
options.appendChild(new Option(country.name, country.name));
});
})

我一直在使用jQuery和调用一个函数来填充下拉列表。

function loadDropDowns(name,value)
{
var ddl = "#Categories";
$(ddl).append('<option value="' + value + '">' + name + "</option>'");
}
function LoadCategories() {
var data = [];
var url = '@Url.Action("GetCategories", "InternalTables")';
$.getJSON(url, null, function (data) {
data = $.map(data, function (item, a) {
return "<option value=" + item.Value + ">" + item.Description + "</option>";
});
$("#ddlCategory").html('<option value="0">Select</option>');
$("#ddlCategory").append(data.join(""));
});
}
function generateYears() {
$.ajax({
type: "GET",
url: "getYears.do",
data: "",
dataType: "json",
contentType: "application/json",
success: function(msg) {
populateYearsToSelectBox(msg);
}
});
}


function populateYearsToSelectBox(msg) {
var options = $("#selectYear");
$.each(msg.dataCollecton, function(val, text) {
options.append(
$('<option></option>').val(text).html(text)
);
});
}

这是我做的一个关于change的例子,我在second select中获得了first select的子元素

jQuery(document).ready(function($) {
$('.your_select').change(function() {
$.ajaxSetup({
headers:{'X-CSRF-TOKEN': $("meta[name='csrf-token']").attr('content')}
});


$.ajax({
type:'POST',
url: 'Link',
data:{
'id': $(this).val()
},
success:function(r){
$.each(r, function(res) {
console.log(r[res].Nom);
$('.select_to_populate').append($("<option />").val(r[res].id).text(r[res].Nom));
});
},error:function(r) {
alert('Error');
}
});
});

}); enter code here

下面是填充id为“FolderListDropDown”的下拉列表的Jquery方法。

$.getJSON("/Admin/GetFolderList/", function(result) {
for (var i = 0; i < result.length; i++) {
var elem = $("<option></option>");
elem.attr("value", result[i].ImageFolderID);
elem.text(result[i].Name);
elem.appendTo($("select#FolderListDropDown"));
}
});

对于像我这样的JavaScript新手,更不用说JQuery了,JavaScript的方式是:

result.forEach(d=>$("#dropdown").append(new Option(d,d)))

你可以从SQL端创建选项(联合) 并返回为字符串,并将该字符串附加到下拉列表 您可以在代码中删除循环。 即,如果你使用任何后端,如SQL server 您可以使用coalesce创建options标签 即你将得到一个包含整个选项

的字符串

然后您可以从后端返回整个字符串,并将其附加到您的下拉列表中