最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to set placeholder first in Select2 - Stack Overflow

programmeradmin1浏览0评论

How can I set placeholders first and not the default value in Select2

I have this HTML code here:

<select class = "select2" style = "width:100%" id = "selectme">
     <option value = "oldest"> Person 1</option>
     <option value = "oldest"> Person 2</option>
     <option value = "oldest"> Person 3</option>
</select>

And Jquery for Select2 here:

$("#selectme").select2({
    placeholder: "Assign to:",
    allowClear:true
});

The example in Select2 Documentation works with setting placeholder as the default value first. But in my case the default value is Person 1 and not the placeholder. Why?

How can I set placeholders first and not the default value in Select2

I have this HTML code here:

<select class = "select2" style = "width:100%" id = "selectme">
     <option value = "oldest"> Person 1</option>
     <option value = "oldest"> Person 2</option>
     <option value = "oldest"> Person 3</option>
</select>

And Jquery for Select2 here:

$("#selectme").select2({
    placeholder: "Assign to:",
    allowClear:true
});

The example in Select2 Documentation works with setting placeholder as the default value first. But in my case the default value is Person 1 and not the placeholder. Why?

Share Improve this question edited Sep 15, 2015 at 13:48 Makudex asked Sep 15, 2015 at 13:40 MakudexMakudex 1,0826 gold badges16 silver badges42 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 11

For placeholders to work properly you need a empty option to be added to the select list like:

<select class="select2" style="width:100%" id="selectme">
    <option value=""></option>
    <option value="oldest">Person 1</option>
    <option value="oldest">Person 2</option>
    <option value="oldest">Person 3</option>
</select>

FIDDLE DEMO

html

<select class="select2" style="width:100%" id="selectme">
    <option value=""></option>
    <option value="oldest">Person 1</option>
    <option value="oldest">Person 2</option>
    <option value="oldest">Person 3</option>
</select>

jquery

$(".select2").select2({             
     placeholder: "change your placeholder"               
});

Your html code does't seems right if its the original code you are not closing the tag:

<select class = "select2" style = "width:100%" id = "selectme"> 
 <option value = "oldest"> Person 1</option>
 <option value = "oldest"> Person 2</option>
 <option value = "oldest"> Person 3</option>
</select>
发布评论

评论列表(0)

  1. 暂无评论