gpt4 book ai didi

jquery - 重置 select2 值并显示占位符

转载 作者:IT王子 更新时间:2023-10-29 03:24:02 28 4
gpt4 key购买 nike

如何将占位符设置为由 select2 重置的值。在我的示例中,如果单击位置或等级选择框并且我的 select2 具有一个值,那么 select2 的值应该重置并显示默认占位符。此脚本正在重置值但不会显示占位符

$("#locations, #grade ").change(function() {
$('#e6').select2('data', {
placeholder: "Studiengang wählen",
id: null,
text: ''
});
});

$("#e6").select2({
placeholder: "Studiengang wählen",
width: 'resolve',
id: function(e) {
return e.subject;
},
minimumInputLength: 2,
ajax: {
url: "index.php?option=com_unis&task=search.locator&tmpl=component&<?php echo JSession::getFormToken() ?>=1",
dataType: 'json',
data: function(term, page) {
return {
q: term, // search term
g: $('#grade option:selected').val(),
o: $('#locations option:selected').val()
};
},
results: function(data, page) {
return {
results: data
};
}
},
formatResult: subjectFormatResult,
formatSelection: subjectFormatSelection,
dropdownCssClass: "bigdrop",
escapeMarkup: function(m) {
return m;
}
});

最佳答案

您必须将 select2 定义为

$("#customers_select").select2({
placeholder: "Select a customer",
initSelection: function(element, callback) {
}
});

重置select2

$("#customers_select").select2("val", "");

关于jquery - 重置 select2 值并显示占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17957040/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com