jsonpサービスコールバックを使用して、パラメータでテーブルヘッダーをソートする方法は?
URL パラメータ: adServerId,advertiserId,campaignId,startDate,endDate,active,inactive,sortBy,start,limit
私のhtmlコード:
`<table id="adcampaignGrid" class="grid" onclick="sort()">
<tr>
<thead>
<th>Ad Server Id</th>
<th>Advertiser Id</th>
<th>Advertiser Name</th>
<tr>
</table>`
私のJQueryコード:
$.each(data.response.docs, function (i, item) { // json is the name of the object
var row = $("<tr></tr>");
row.append('<td>' + item.adServerId + '</td>'); //item is named at the opening of this $.each function
row.append('<td>' + item.advertiserId + '</td>');
row.append('<td>' + item.advertiserName + '</td>');
row.append('<td>' + item.campaignId + '</td>');
$("#adcampaignGrid").append(row);