用jquery的ajax类似的请求就可以了:比如:
$.get("test.php", function(data){
   alert("Data Loaded: " + data);
  //拿到data以后就直接插入到指定的div里面,加入div id为tag
    $("#tag").append(data);
}); 

 

相关文章:

  • 2022-01-03
  • 2022-01-02
  • 2022-12-23
  • 2022-12-23
  • 2021-08-16
  • 2021-06-20
  • 2022-01-23
猜你喜欢
  • 2021-07-10
  • 2022-01-23
  • 2022-01-06
  • 2021-06-22
  • 2021-05-31
  • 2021-12-04
  • 2021-04-26
相关资源
相似解决方案