淘先锋技术网

首页 1 2 3 4 5 6 7

不怎么用, 记录下方便以后用。数据基本上都在后台处理完了,拿过来直接用

function ajax_post(url) {

$('#html').empty();

var id = $('#game_id option:selected').val();

var postData = {

'id': id,

};

$.post(url,postData,function(requst){

if(requst.code == 1){

var data = JSON.parse(requst.data);

var len = getJsonLength(data);//获取json数组长度

var htmlSpan = "";

for (var i = 0; i < len; i++ ){

htmlSpan += "" + data[i]['name'] + "";

}

$('#html').html(htmlSpan);

}else {

alert(requst.msg);

}

});

}

//获取json数组长度

function getJsonLength(jsonData){

var jsonLength = 0;

for(var item in jsonData){

jsonLength++;

}

return jsonLength;

}