我有标题、图像和日期的列表视图。我想根据日期字段对该列表进行排序,然后显示在 html5 页面中。我在这上面使用了 jquery 和 html5。
$j('#task_summary_list').empty();
if (response.totalSize > 0) {
$j.each(response.records, function(i, record) {
var imgName;
switch (record.Priority) {
case "High":
imgName = "images/prio_high24.png";
break;
case "Low":
imgName = "images/prio_low24.png";
break;
default:
imgName = "images/prio_normal24.png";
}
// create new list entry for record to the listview
$j('<li></li>')
.attr('id', record.Id)
.hide()
.append(
'<a href="#">' + '<img src="' + imgName
+ '" alt="High" class="ui-li-icon">'
+ '<h1>'
+ record.Subject + '</h1>'
+ '<p>' + '<strong>'
+ record.ActivityDate + '</strong>' + '</p>'
+ '</a>')
.click(function(e) {
e.preventDefault();
console.log("Under onSuccessTasks " + record.Id);
showTaskDetails(record);
})
.appendTo('#task_summary_list')
.show();
});
}
else {
$j('<li class="norecord">No records to display</li>').appendTo('#task_summary_list');
}
$j('#task_summary_list').listview('refresh');
$j.mobile.hidePageLoadingMsg();
任何帮助表示赞赏。预先感谢。