在手机浏览器中的jquery帖子不起作用
我试图用下面的代码在Web应用程序中使用jQuery发布一个请求:
alert('1');
$.post(server_hostname,
{ method: 'getTimestamp', type: 'text', partnerKey: partnerKey },
function(results, textStatus) {
alert(results)
alert('2');
},
'text');
在我的计算机上,这在Chrome和Firefox中运行得非常好,但不适用于iOS或Safari浏览器。 我猜$ .post()在移动浏览器中不成功,但为什么? 另一方面,我怎样才能看到我的iPhone / Android的JavaScript错误输出?
谢谢!
你的数据类型'text'
应该是xml, json, script, or html
欲了解更多信息,请参阅jQuery的文章
链接地址: http://www.djcxy.com/p/89971.html