我永远不能在Select2 JQuery插件中定义占位符文本.我试过了代码 $("#first").select2({ placeholder: {id: "", text: "Choose an option…"}}); 但它对我不起作用.我的代码是here 而且,如何搜索矩形为rounded,S
$("#first").select2({ placeholder: {id: "", text: "Choose an option…"} });
但它对我不起作用.我的代码是here
而且,如何搜索矩形为rounded,Select2的版本是什么?
您必须在select元素的开头添加一个空选项:<select name="first" id="first"> <option></option> ... </select>
然后只需添加一个这样的占位符:
$(document).ready(function(){ $("#first").select2({ placeholder: "Your placeholder", allowClear: false }); });