为什么我的jquery帖子没有发送数据?

时间:2014-06-25 16:00:52

标签: javascript php jquery ajax

我知道它没有发送帖子值,因为在我的php中我有一个不会被调用的echo语句。

function common_set_total(doc_string)
{
  var parser = new DOMParser(); //create a new DOMParser
  var doc = parser.parseFromString(doc_string, "application/xml"); //convert the string to xml
  $.ajax
  (
    {
      type: "POST",
      processData: false,
      url:  SITE_URL + "/system/xml/price",
      data: { xml: doc, apptype: "frame", session_id: session_id}
    }
  ).done(function( msg ) 
  {
      $("#total").html("$" + msg); //Set the total
  });

}

1 个答案:

答案 0 :(得分:0)

function common_set_total(doc_string)
{
  $.ajax
  (
    {
      type: "POST",
      processData: false,
      url:  SITE_URL + "/system/xml/price",
      data: "xml=" + doc_string + "&apptype=frame&session_id=" + session_id
    }
  ).done(function( msg ) 
  {
      $("#total").html("$" + msg); //Set the total
  });

}