移动浏览器中的jquery帖子不起作用

时间:2011-11-09 09:21:10

标签: javascript jquery post jquery-mobile

我正在尝试使用以下代码在Web应用程序中使用jQuery发布post请求:

alert('1');
$.post(server_hostname, 
       { method: 'getTimestamp', type: 'text', partnerKey: partnerKey },
       function(results, textStatus) {
           alert(results)
           alert('2');
       },
       'text');

这在我的计算机上的chrome和firefox中运行得很好,但在iOS和Android浏览器的safari中都没有。我猜$ .post()在移动浏览器中没有成功,但为什么呢? 另一方面,如何通过iPhone / Android查看javascript错误输出?

谢谢!

1 个答案:

答案 0 :(得分:1)

您的数据类型'text'应为xml, json, script, or html

有关详细信息,请参阅jQuery's post documentation