我正在尝试使用我尝试使用的 jQuery mobile 在动态列表中创建动态列表,item.On("click", callGroups);
但我无法将参数传递给函数。我正在使用 jQuery mobile 1.3 和 jquery 1.8
这是我的ajax代码
<script type="text/javascript" type="text/javascript">
$(document).ready(function () {
Greating();
});
// $(document).on('pageinit', function () {
function callGroups(ID)
{
$("#"+ID).append("<ul><li> first</li><li>second item</li> </a></li> ");
}
function Greating() {
$.ajax({
type: "POST",
url: "CarService.asmx/GetAllsections",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
var sections = response.d;
$('#page_body').append("<div data-role='page' id= 'ssaadd'><div>");
$.mobile.initializePage();
$.each(sections, function (index, section) {
// asd = "listsec" + section.secId;
$("#theList").append("<li> <a id = '"+section.secId+"' ><img src='pic/" + section.SecImg + "'> <br /> " + section.SecName + ' ' + section.SecArbName + " <br />" + section.SecArbDiscr + "").on("click", callGroups();
});
console.log(response);
},
error: function (response) {
$("#theList").append("<li>error<li>");
console.log(response);
}
});
}
</script>
如何在动态列表中构建动态列表?