标签:UNC col .ajax get func ... success template pre
$(function(){
$.ajax({
url : ‘.........‘,
type : ‘get‘,
success : function(response){
console.log(response)
}
});
});
$(function(){
$.ajax({
url : ‘.........‘,
type : ‘get‘,
success : function(response){
console.log(response)
var html = template(‘id‘,
response);
$(‘.list‘).html(html);
console.log(html);
}
});
});
标签:UNC col .ajax get func ... success template pre
原文地址:https://www.cnblogs.com/jy13638593346/p/9782170.html