gg.js 265 B

12345678910111213141516171819202122
  1. jQuery(document).ready(function ($) {
  2. var id=$(".sig-list").data("id");
  3. $.ajax({
  4. url: '/ad.php',
  5. type: 'post',
  6. dataType: 'html',
  7. data: { id:id},
  8. success: function(b) {
  9. $(".sig-list").prepend(b)
  10. },
  11. error: function() {},
  12. })
  13. })