尝试$ .get时出现Javascript错误

时间:2013-09-21 18:40:22

标签: javascript jquery

这是我在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);
    }
}

我一直在找answear,但我还没找到它,所以这就是我发布它的原因。

1 个答案:

答案 0 :(得分:0)

好吧,我刚刚发现了。这是tviggr扩展的问题。 @Barmar是对的,但要删除错误我必须删除它。所以我的浏览器出了问题。