当前位置 : 主页 > 网页制作 > JQuery >

如何在Select2 JQuery插件中定义占位符文本

来源:互联网 收集:自由互联 发布时间:2021-06-15
我永远不能在Select2 JQuery插件中定义占位符文本.我试过了代码 $("#first").select2({ placeholder: {id: "", text: "Choose an option…"}}); 但它对我不起作用.我的代码是here 而且,如何搜索矩形为rounded,S
我永远不能在Select2 JQuery插件中定义占位符文本.我试过了代码

$("#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
    });
});
网友评论