-1
jQuery(document).ready(function(){

    jQuery(window).scroll(function(){
        if (jQuery(this).scrollTop() > 600) {
            jQuery('.scrollup').fadeIn();
        } else {
            jQuery('.scrollup').fadeOut();
        }
        if(jQuery(this).scrollTop() < 600) {
            jQuery('.scrolldown').fadeIn();
            }else {
            jQuery('.scrolldown').fadeOut();
            }
    });

    jQuery('.scrollup').click(function(){
        jQuery("html, body").animate({ scrollTop: 0 }, 900);

        return false;
    });
    jQuery('.scrolldown').click(function() {
        jQuery("html, body").animate({ scrollTop: jQuery(document).height()-jQuery(window).height() }, 900);
        return false;
        });

});

我在 Wordpress 网站上为页面滚动器尝试了此代码。当我从本地主机运行而不是在实时站点上运行时,它可以工作。为什么它不能在实时站点上运行?

我在 Javascript 控制台(通过 Firebug)上收到此错误:

TypeError: invalid 'in' operand e
[Break On This Error]   

...pe);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.node...

jquery.min.js (line 5)
TypeError: invalid 'in' operand e
[Break On This Error]   

...pe);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.node...

jquery.min.js (line 5)
TypeError: invalid 'in' operand e
[Break On This Error]   

...pe);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.node...

jquery.min.js (line 5)
TypeError: invalid 'in' operand e
[Break On This Error]   

...pe);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.node...

jquery.min.js (line 5)
TypeError: invalid 'in' operand e
[Break On This Error]   

...pe);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.node...

jquery.min.js (line 5)
TypeError: invalid 'in' operand e
[Break On This Error]   

...pe);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.node...

jquery.min.js (line 5)
TypeError: invalid 'in' operand e
[Break On This Error]   

...pe);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.node...
4

1 回答 1

1

首先,您的选择器失败了

var store_cur_pos_top = $(".author_cont").offset().top;

据我所知,techstumbling.com 上没有 $(".author_cont") 的实例。因此,您的 .offset() 调用将失败

同样的事情:

$('whois').addEvent('submit', function(e) {

选择器 $('whois') 没有可用的对象。正如 ReLeaf 提到的,MooTools 和 jQuery 之间可能存在冲突

一些通用的建议。解决这些选择器问题。始终清除缓存以确保您没有过时的内容。从这些问题开始,然后其余的可能会变得更加清晰。

编辑:

这是一篇关于解决 MooTools/jQuery 冲突的有用帖子: jQuery 和 MooTools Conflict

于 2013-05-23T15:12:34.850 回答