$.ajax({
                    cache: true,
                    type: "POST",
                    url: "/postcomment",
                    data: $('#pinglunform').serialize(),// 你的formid
                    async: false,
                    error: function (request) {
                        alert("Connection error");
                    },
                    success: function (data) {
                        $("#commonLayout_appcreshi").parent().html(data);
                    }
                });

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-09
  • 2022-12-23
猜你喜欢
  • 2021-12-17
  • 2022-03-06
  • 2022-12-23
  • 2021-09-19
  • 2022-12-23
  • 2021-08-06
  • 2022-01-10
相关资源
相似解决方案