我知道如何使用 $.ajax 方法发布。我有一个将数据发布到支付 API 的表单,响应如下所示:
<ns2:GetTransactionsResponseType xmlns:ns2="http://www.paymentgateway.com/schema/api/2.0/service.xsd">
<Timestamp>2012-08-14T17:33:55.213+10:00</Timestamp>
<Version>2.0</Version>
<Status>Success</Status>
<total>0</total>
</ns2:GetTransactionsResponseType>
如您所见,交易总数为 0,因此第 1 步使用 $.ajax 发出发布请求,然后成功:我想做$('#results'),html('the total transactions are: '+numberoftransactions);
任何想法/建议?谢谢你