12345678910111213141516171819202122 |
- jQuery(document).ready(function ($) {
- var id=$(".sig-list").data("id");
-
- $.ajax({
- url: '/ad.php',
- type: 'post',
- dataType: 'html',
- data: { id:id},
- success: function(b) {
-
- $(".sig-list").prepend(b)
-
- },
- error: function() {},
- })
- })
|