您好,我很长时间以来一直在使用我的长轮询代码,它在 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); })();
});