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

How can I set placeholders first and not the default value in Select2I have this HTML code here:<sel

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>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743634789a4481966.html

相关推荐

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

    How can I set placeholders first and not the default value in Select2I have this HTML code here:<sel

    19小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信