簡體   English   中英

移動瀏覽器中的jquery帖子不起作用

[英]jquery post in mobile browser doesn't work

我正在嘗試使用以下代碼在Web應用程序中使用jQuery發出發布請求:

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

在我的計算機上的chrome和firefox中,該功能運行良好,但在Safari瀏覽器(適用於iOS和Android瀏覽器)中卻無法使用。 我猜$ .post()在移動瀏覽器中沒有成功,但是為什么呢? 另一方面,如何查看我的iPhone / Android輸出的javascript錯誤?

謝謝!

您的數據類型'text'應為xml, json, script, or html

有關更多信息,請參見jQuery的發布文檔。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM