这是我在 chrome 开发人员控制台中遇到的错误
Uncaught TypeError: Object #<Comment> has no method 'querySelectorAll' tviggr.content.dev.js:3094
that.proccessNode tviggr.content.dev.js:3094
(anonymous function) tviggr.content.dev.js:3212
p.event.dispatch tviggr.content.dev.js:2
g.handle.h tviggr.content.dev.js:2
(anonymous function) jquery.js:6163
x.extend.access jquery.js:861
x.fn.extend.html jquery.js:6138
(anonymous function) pages.js:41
c jquery.js:3048
p.fireWith jquery.js:3160
k jquery.js:8235
r
这就是问题所在 pages.js 代码的一部分。
function nHome(){
if(currentSiteUrl!="pages/home.php" && switchProcess==false){
//Translation and variables stuff.
switchProcess = true;
$('#mainContent').fadeTo(200,0.0001);
//Page loading stuff.
setTimeout(function(){$.when($.ajax(
{
url:"pages/home.php",
cache:false,
success: function(pagesData)
{
content = pagesData;
$('title').html('Home - kamillozz7k');
//Setting var for current site
currentSiteUrl = 'pages/home.php';
}
})).done(function(){
$('#mainContent').html(content);
$('#mainContent').fadeTo(500,1);
setTimeout(function(){switchProcess = false;},300);
});
},200);
}
}
我一直在寻找答案,但我没有找到它,所以这就是我发布它的原因。