jquery+ajax渲染,简单的拼接字符串

.html


.json


{
	"status": "Y",
	"data": [{
		"id": "0001",
		"name": "张三",
		"province": "山东",
		"city":"烟台",
		"area":"芝罘区",
		"address": "新城街道",
		"mobile":"18660057131",
	},{
		"id": "0002",
		"name": "李四",
		"province": "山东",
		"city":"烟台",
		"area":"福山区",
		"address": "新城街道",
		"mobile":"16607891700",
	
	},{
		"id": "0002",
		"name": "露露",
		"province": "海南市",
		"city":"三亚经济开发区",
		"area":"东东西",
		"address": "的街道",
		"mobile":"13607891700",
		
	}]
}

.js

  $.ajax({
        url: seajs.api.address,
        type: 'GET',
        dataType: 'json',
        success: function(res) {
        	if(res.status==="Y"){
                if(res.data.length > 0){
                    for (var i = 0; i '+
                        ''+
                            '
'+ '
'+ ''+data.name+''+ ''+data.mobile+''+ '
'+ '
'+data.province+data.area+data.address +'
'+ '
'+ '
'+ '' ); } } }else{ console.log('链接失败'); } } });


你可能感兴趣的:(jquery+ajax渲染,简单的拼接字符串)