admin管理员组文章数量:1342908
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 03 Answers
Reset to default 11For 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>
本文标签: javascriptHow to set placeholder first in Select2Stack Overflow
版权声明:本文标题:javascript - How to set placeholder first in Select2 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743634789a2513715.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论