Jquery ui with Jeditable

雨燕双飞 提交于 2019-12-06 01:36:52

.autocomplete() is not live, so it only binds to elements that exist at the time of the call.

In your case, you'll want to use live or, preferably, delegate to accommodate the fact the input element will not exist until the user clicks on it. Knowing that the elements with autocomplete have ui-autocomplete-input class, you can do something like the following, in replace of the original .autocomplete():

$("#cv_cd").delegate(".ui-autocomplete-input", "focus", function (event) {
    $(this).autocomplete({
        source: 'location.php',
        minLength: 2
    });
});
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!