gpt4 book ai didi

jquery - 为什么这在黑莓上不起作用

转载 作者:行者123 更新时间:2023-12-01 03:53:20 25 4
gpt4 key购买 nike

我有一个可以在 Android、iPhone、Blackberry torch 和 webkit 浏览器上运行的 ajax 函数。我试图在各种版本 5 和 6 黑莓模拟器上测试这一点,但错误处理程序总是被调用。

例如消息框中的响应是:错误,完成。

函数返回的错误是:'错误-状态:错误 jqXHR 状态:0 ResponseText:'

而所有其他设备都是:成功完成。

我需要为黑莓做一些特别的事情吗?

        $(document).ready(function () {

//Login form Login link click
$("#login a.login").click(function () {

//Call the approve method on the code behind
$.ajax({
type: "POST",
url: "Login.aspx/LoginUser",
data: "{'Username':'admin', 'Password':'admin' }", //Pass the parameter names and values
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
error: function (jqXHR, textStatus, errorThrown) { alert("Error- Status: " + textStatus + " jqXHR Status: " + jqXHR.status + " jqXHR Response Text:" + jqXHR.responseText) },
success: function () { alert('success'); window.location.href = "Index.aspx"; },
complete: function () { alert('complete'); }
});
});
});

最佳答案

从来没有深入了解这个问题,唯一的解决方案是不对版本 4 和 6 BB 使用 ajax

关于jquery - 为什么这在黑莓上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5623159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com