我知道它没有发送帖子值,因为在我的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
});
}
答案 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
});
}