你好我長時間使用我的長輪詢代碼,它與jquery verison 1.8工作正常,但因爲我升級到版本1.8.1它停止工作,它的給予我的錯誤setTimeout無法正常工作後,更新到jquery版本1.8.1
Error: NS_ERROR_XPC_BAD_CONVERT_JS: Could not convert JavaScript argument 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); })();
});
請不要爲[錯誤搜索結果](https://www.google.co.uk/search?q=NS_ERROR_XPC_BAD_CONVERT_JS)導致您找到解決方案嗎? – Jamiec
nope,我第一次嘗試它在谷歌,但仍然沒有幫助,所以我在這裏尋求幫助 –
當你從'beast.php'獲取數據時,HTML的樣子是什麼?另外,'counter(a,page)'是做什麼的?任何進一步的DOM操作? – Jamiec