不知道我是否做錯了什麼。 但是當我運行下面的腳本時,它似乎加載了兩次相同的信息。
它應該只顯示一次信息。 我想知道如果我錯過了什麼?
$.getJSON('system/classes/core.php?task=listmyleads&userid='+userid, function(data) {
$.each(data,function(i,myinfo){
$("tbody").append('<tr>'+
' <td id="row" class="small"><input id="'+myinfo.customer_id+'" type="checkbox"></td>'+
' <td>'+myinfo.CreatedTime+'</td>'+
' <td>'+myinfo.Company+'</td>'+
' <td class="center">'+myinfo.FirstName+' '+myinfo.LastName+'</td>'+
' <td class="center">'+myinfo.Phone+'</td>'+
' <td class="center bigger">'+myinfo.Email+'</td>'+
' <td class="center">'+myinfo.stafffirstname+' '+myinfo.stafflastname+'</td>'+
' <td class="center last">A</td>'+
' </tr>');
});
});
下面是數據鏈路 - http://incard.com.au/telesales/system/classes/core.php?task=listmyleads&userid=1
我注意到,當我做一個警報(i)它從0到1每次運行 – RussellHarrower