标签: jquery jquery-ui
我正在使用加载函数来加载数据。如何将UI selectable应用于加载的数据。
UI selectable
答案 0 :(得分:2)
您需要在.selectable()回拨函数中致电load():
.selectable()
load()
$("div").load("url_here", function(){ $(this).find("ul").selectable(); });
显然将div,url_here和ul更改为适合您代码的变量。
div
url_here
ul