jQuery没有在Wordpress网站上工作

时间:2013-05-23 14:15:21

标签: javascript jquery wordpress jquery-plugins wordpress-plugin

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网站上尝试使用此代码作为页面滚动条。当我从localhost运行而不是在现场网站上时,它可以工作。为什么它不在现场工作?

我在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...

1 个答案:

答案 0 :(得分: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 and MooTools Conflict