1

您好,我很长时间以来一直在使用我的长轮询代码,它在 jquery verison 1.8 上运行良好,但是自从我将它升级到 verison 1.8.1 后它停止工作并且它给了我错误

错误:NS_ERROR_XPC_BAD_CONVERT_JS:无法转换 JavaScript 参数 arg 0 [nsIDOMWindow.getComputedStyle]

这是我的代码

  (function pollfrnd() { setTimeout(function() { 
        var demon=$('.frndnotimore').val();
        var page="notirequest";
        var a=$('.gvpgvpxgvp').val();
        $.ajax({ url: 'modules/notifications/beast.php?nid='+demon+'&id='+a+'&page='+page, 
        success: function(html) {
        if ($.trim(html) == 'no')
        {

        }
        else
        {

        $('.frndnotimore').remove();
        $('.notiloadfriend').prepend($(html).fadeIn('slow'));
        counter(a,page);
        }
        }, dataType: "html", complete: pollfrnd }); }, 60000); })();

    });
4

1 回答 1

1

当我完全按照以下方式运行您的代码时,实际上我根本没有收到任何错误(jquery 1.7.2 AND jquery 1.8.1 AND EVEN Firefox 14),它甚至尝试轮询一些东西:

function pollfrnd() { setTimeout(function() { 
        var demon=$('.frndnotimore').val();
        var page="notirequest";
        var a=$('.gvpgvpxgvp').val();
        $.ajax({ url: 'modules/notifications/beast.php?nid='+demon+'&id='+a+'&page='+page, 
        success: function(html) {
        if ($.trim(html) == 'no')
        {

        }
        else
        {

        $('.frndnotimore').remove();

        $('.notiloadfriend').prepend(html);
        //This code below was your problem in Firefox
        //$('.notiloadfriend').prepend($(html).fadeIn('slow'));
        counter(a,page);
        }
        }, dataType: "html", complete: pollfrnd }); }, 60000); }

 pollfrnd();
于 2012-09-04T13:22:01.103 回答