2017-07-19 41 views

回答

1
$(function(){ 
    $.ajax({ 
     url:'abc.xyz', 
     //more options here, 
     success:function(data){/
      //logic to append data after last image 
      $(data).appendAfter("img:last"); // assuming data as html 
     } 
    }) 
}) 
相關問題