這篇文章主要介紹了jquery獲取JSON對象中數據的示例,代碼中有注釋,大家參考使用吧
代碼如下: $.ajax({ url: '這個地址要換成你自己的', data: {S_CourseID: courseid , CurrTime : new Date().getTime()}, //加個時間戳,否則會不自動更新數據 dataType: 'json', success: function(data) { if (data != null) { if ( data.length > 0) { for(var i = 0 ; i < data.length ; i++){ specids = specids + data[i].S_SpecialtyID + ","; //獲取JSON對象中的數據 coursetypeid = data[i].S_CourseTypeID ; } if (specids.length >0) { specids = specids.substring(0,specids.length-1); } }