jQuery AJAX 和 IE8 输出“无效参数”

发布于 2024-12-11 03:26:05 字数 851 浏览 0 评论 0原文

伙计们! 这是非常奇怪的事情。这段代码通常可以在我知道的所有浏览器中运行,除了 IE8(也可能是 IE7)。

function xajax_xfrmproc(sender, eventname, data, formname, data2) {

var dt = {};
dt.__xr = 1;            // AJAX request flag
dt.__sender = sender;
dt.__eventname = eventname;
dt.__data = data;
dt.__formname = formname;
dt.__data2 = data2;

$.ajax({
    type: 'POST',
    url: '',
    data: dt,
    error: function(req, text, error) {
        alert('AJAX Error: ' + text + ' | ' + error + ':' + "\n" + req.responseText);
    },
    success: function (json) {
        jxr_decode(json);
    },
    dataType: "json"
});
}

它调用 error 方法并写入:“AJAX 错误:错误 | 错误:参数无效”。

您可以在这里在线测试:http://stat.8-800.su(输入任何值并按“Войти в статистику”按钮)。

我检查了所有互联网,但没有发现任何有用的东西。 我尝试将 AddDefaultCharset 设置为 utf-8,但没有任何反应。

guys!
It is very strange thing. This code normally works in all browsers I know, except IE8 (may be IE7 too).

function xajax_xfrmproc(sender, eventname, data, formname, data2) {

var dt = {};
dt.__xr = 1;            // AJAX request flag
dt.__sender = sender;
dt.__eventname = eventname;
dt.__data = data;
dt.__formname = formname;
dt.__data2 = data2;

$.ajax({
    type: 'POST',
    url: '',
    data: dt,
    error: function(req, text, error) {
        alert('AJAX Error: ' + text + ' | ' + error + ':' + "\n" + req.responseText);
    },
    success: function (json) {
        jxr_decode(json);
    },
    dataType: "json"
});
}

It calls error method and writes: "AJAX Error: error | Error: Invalid argument".

You can test is online here: http://stat.8-800.su (enter any values and press "Войти в статистику" button).

I check in over all internet but not found anything useful.
I've tried to set AddDefaultCharset utf-8, nothing happens.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请止步禁区 2024-12-18 03:26:05

这是一个尝试,但请尝试使用实际的 URL 而不是空字符串。所以

url: '/',

This is a stab, but try using the actually URL instead of the empty string. So

url: '/',
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文