jQuery Chosen:在同一页面上显示多个选择字段

时间:2015-09-24 19:13:25

标签: jquery html laravel jquery-chosen

我正在使用https://harvesthq.github.io/chosen/来允许用户在下拉列表中搜索值。

我在post/create页面上还有2个标签:Link&文本

两个选项卡都具有使用$(selector).chosen();的相同“subreddit_id”字段,但是,选择的jquery仅显示在第一个选项卡上,而不显示在第二个选项卡上。如果我从第二个标签中删除了班级名称,我的数据会显示正常的下拉列表,如果我添加了班级chosen-select,则字段根本不会加载。

我在两个标签上都使用相同的字段。

enter image description here

不确定为什么会这样。我已经尝试使用随插件提供的示例代码,但它无法正常工作

for (var selector in config) {
      $(selector).chosen(config[selector]);
    }

这是我的代码

 <script type="text/javascript">
   $(document).ready(function(){
       $('.chosen-select').chosen();
       $('.chosen-select1').chosen();
   });
</script>

<div class="bs-posts bs-posts-tabs" data-posts-id="togglable-tabs">
        <ul id="myTabs" class="nav nav-tabs" role="tablist">
            <li role="presentation" class="active"><a href="#home" id="home-tab" role="tab" data-toggle="tab" aria-controls="home" aria-expanded="true">Link</a></li>
            <li role="presentation"><a href="#profile" role="tab" id="profile-tab" data-toggle="tab" aria-controls="profile">Text</a></li>
        </ul>
        <div id="myTabContent" class="tab-content">
            <div role="tabpanel" class="tab-pane fade in active" id="home" aria-labelledBy="home-tab">

                {!! Form::open(['url' => 'posts', 'method' => 'POST']) !!}
                <p>
                    {!! Form::label('title', 'Title:') !!}
                    {!! Form::text('title', null, ['class' => 'form-control', 'id' => 'title']) !!}
                </p>

                <p>
                    {!! Form::label('link', 'Link:') !!}
                    {!! Form::text('link', null, ['class' => 'form-control', 'id' => 'link']) !!}
                </p>

                <p>
                    {!! Form::label('subreddit', 'Subreddit:') !!}
                    {!! Form::select('subreddit_id', $subreddits, null, ['class' => 'chosen-select']) !!}
                </p>

                <p>
                    {!! Form::submit('Submit Post', ['id' => 'submit', 'class' => 'btn btn-primary']) !!}
                </p>

                {!! Form::close() !!}
            </div>
            <div role="tabpanel" class="tab-pane fade" id="profile" aria-labelledBy="profile-tab">
                {!! Form::open(['url' => 'posts', 'method' => 'POST']) !!}
                <p>
                    {!! Form::label('title', 'Title:') !!}
                    {!! Form::text('title', null, ['class' => 'form-control', 'id' => 'title']) !!}
                </p>

                <p>
                    {!! Form::label('text', 'Text:') !!}
                    {!! Form::textarea('text', null, ['class' => 'form-control', 'id' => 'text']) !!}
                </p>

                <p>
                    {!! Form::label('subreddit', 'Subreddit:') !!}
                    {!! Form::select('subreddit_id', $subreddits, null, ['class' => 'chosen-select1']) !!}
                </p>

                <p>
                    {!! Form::submit('Submit Post', ['id' => 'submit', 'class' => 'btn btn-primary']) !!}
                </p>

                {!! Form::close() !!}
            </div>
        </div>
    </div><!-- /tabs -->

2 个答案:

答案 0 :(得分:2)

您必须在标签更改中触发插件,才能使用事件shown.bs.tab事件。

代码:

$(document).ready(function () {

    $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
        var target = $(e.target).attr("href") // activated tab
        debugger
        if (target == '#home') {
            $('.chosen-select').chosen();
        }
        if (target == '#profile') {
            $('.chosen-select1').chosen();
        }
    });

    $('a[data-toggle="tab"]:first').trigger("shown.bs.tab");
});

演示:http://jsfiddle.net/IrvinDominin/o9xp6zcd/

答案 1 :(得分:0)

这就是我修复它的方法:

$(document).ready(function(){
  $('.chosen-select').chosen();
  $('.chosen-select1').chosen({width: "100%"});
});