第一次打开时模态框显示两次

问题描述 投票:0回答:1
javascript html jquery bootstrap-modal jquery-select2
1个回答
0
投票

如果我的问题不清楚,我很抱歉,我对这个领域还是新手。不过,我根据 GitHub 问题中“aurelian-scarlat”的评论找到了一个解决方案:

https://github.com/Meteor-Community-Packages/meteor-autoform-select2/issues/44

我无法使用类名“.select2normalWithouClear”,因为还有一些其他元素具有相同的类。所以我所做的就是为我的所有选择赋予相同的新类名称,并像这样初始化它们:

<select class="form-control select2normalWithouClear edu-level mySelectDropdown" data-placeholder="Select Education Level"><option>Test 1</option><option>Test 2</option><option>Test 3</option></select>

<select class="form-control select2normalWithouClear edu-instituteName mySelectDropdown" data-placeholder="Select Institution Name"><option>Test 1</option><option>Test 2</option><option>Test 3</option></select>

初始化它:

$('.mySelectDropdown').select2({ placeholder: $(this).data('placeholder') });

© www.soinside.com 2019 - 2024. All rights reserved.