0

AJAX (ASP.NET Web フォーム) を使用して新しい選択可能な要素をサイトに追加していますが、新しく作成された要素は選択できません。これは何かの出来事が関係していると思います。それらの関数で .on を使用することで解決できるかもしれませんが、その方法がわかりません。誰でもそれを修正する方法を知っていますか?

これが私のコードです:

$(".selectable").selectable({
filter: '.ui-widget-content',
stop: function () {
    var result = $("#select-result").empty();
    $(".ui-selected", this).each(function () {
        var index = $(this).attr('id');
        index = index.substring(12, index.length);
        result.append(" #" + index);
    });
}
});
4

1 に答える 1

2

when you load your page, jquery assign respective functions to each html tags. when you create some new div/html tags you should re-initialize the function because jquery doesn't know about your newly created html tags,

for the respective query try re initializing the jquery function after adding new selectable element

hope this help..

于 2012-12-16T16:37:40.653 に答える