product_info.js 308 B

1234567891011
  1. $(function() {
  2. var goods_id = GetQueryString("goods_id");
  3. $.ajax({
  4. url: ApiUrl + "/index.php?act=goods&op=goods_body",
  5. data: {goods_id: goods_id},
  6. type: "get",
  7. success: function(result) {
  8. $(".fixed-tab-pannel").html(result);
  9. }
  10. });
  11. });