jQuery可搜索的下拉插件bug

时间:2013-08-04 09:53:49

标签: javascript jquery html plugins jquery-plugins

首先我想说的是,我对jQuery和javascript相当新。我正在尝试使用名为 jQuery searchable dropdown plugin it's source code)的插件。我也试过Select2和Chosen,我不喜欢它们,很难定制和马车。

在我的页面上,用户可以添加新的选择输入(必须具有功能),这会导致此插件出现一些视觉问题。

我创建了一个简单的演示(jsfiddle.Net/sf42v/),单击“添加新输入”几次,您可以看到第一个选择输入越来越大。

首先感谢你阅读这篇文章,如果你能说出如何解决这个问题,我将非常感激。

后代的演示代码:

HTML

<button type='button' id='addItem'>Add new input</button>
<form id='inputs'>
    <div>
        <select class='selectSearch'>
            <option>Test1</option>
            <option>Test2</option>
            <option>Test3</option>
        </select>
    </div>
</form>

JS

$('.selectSearch').searchable();

var container = $('#inputs');

$('#addItem').on('click', function () {
    $("<div><select class='selectSearch'><option>Test1</option><option>Test2</option><option>Test3</option></select></div>").appendTo(container);
    $('.selectSearch').searchable();
    lenght++;
});

1 个答案:

答案 0 :(得分:0)

您正在每次添加所有选项时初始化插件。

你可以做这样的事情;

var container = $('#inputs');
$('#addItem').on('click', function () {
    var newSelect = $("<div><select class='selectSearch'><option>Test1</option><option>Test2</option><option>Test3</option></select></div>");
    newSelect.appendTo(container);
    newSelect.find(".selectSearch").searchable(); // only apply to the new select
});

http://jsfiddle.net/sf42V/1/