javascript - Select2 Search Icon on Search Field - Stack Overflow

I use select2 with bootstrap3..htmlSingle select boxesHow to add search icon in search field?like this:

I use select2 with bootstrap3.

.html

Single select boxes

How to add search icon in search field?

like this:

/

This is my Select2 option code:

$(".select2").select2({
    theme: 'bootstrap'
});

This is my HTML code:

<select style="width:100%" class="select2">
    <optgroup label="Test-group">
        <option>test1</option>
        <option>test2</option>
    </optgroup>
</select>

Thank you.

I use select2 with bootstrap3.

https://select2.github.io/examples.html

Single select boxes

How to add search icon in search field?

like this:

https://fk.github.io/select2-bootstrap-css/

This is my Select2 option code:

$(".select2").select2({
    theme: 'bootstrap'
});

This is my HTML code:

<select style="width:100%" class="select2">
    <optgroup label="Test-group">
        <option>test1</option>
        <option>test2</option>
    </optgroup>
</select>

Thank you.

Share Improve this question edited Sep 5, 2016 at 15:50 Michael Benjamin 373k110 gold badges613 silver badges730 bronze badges asked Sep 5, 2016 at 2:55 manaovomanaovo 311 silver badge3 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3

inspect your html and find the css rule of input, then add background to it like: background: #fff url('select2.png') no-repeat 100% -22px;

This thread helped me - 8 years later there are slightly more options on how to do this, the one described below is what I ended up doing. This adds the placeholder value to the search bar inside of a select2 dropdown using jquery, using with bootstrap5.

$('#your-select-id').one('select2:open', function(e) {
    $('input.select2-search__field').prop('placeholder', 'enter username or city');
});

ref: https://forums.select2/t/additional-placeholder-in-search-input/325

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

相关推荐

  • javascript - Select2 Search Icon on Search Field - Stack Overflow

    I use select2 with bootstrap3..htmlSingle select boxesHow to add search icon in search field?like this:

    10小时前
    40

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

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

关注微信