Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 JQuery 的新手,在内容移动到 AJAX 调用后,我破坏了可拖动/可放置的功能。
当我在页面加载时加载数据的 HTML 表时,一切正常。现在我用 AJAX 注入它,该功能已经停止工作。
有人可以告诉我我需要做什么才能让一切都变得动态吗?
function initDraggable(c){ $(c).draggable(); } $.ajax{ ........ success:function(){ initDraggable($(".draggable-item")); } }
ajax之后,再次调用init函数