Jquery Trigger使用Chrome,IE而不是Firefox

时间:2014-07-24 11:57:46

标签: javascript jquery

目前我的代码将在chrome和IE中触发但在firefox中没有任何内容..我添加了console.log并在FireFox中繁荣,代码到达那里,所以没有添加CSS?

jQuery("#eigth").waypoint(function(direction) {
    console.log('got here');
    jQuery("#globe").css({'filter:' : 'none', '-webkit-filter' : 'grayscale(0%)'});
});

1 个答案:

答案 0 :(得分:1)

检查您的代码

jQuery("#eigth").waypoint(function(direction) {
    console.log('got here');
    jQuery("#globe").css({'filter:' : 'none', '-webkit-filter' : 'grayscale(0%)'});
});

语法错误(:)

{'filter' : 'none' instead of {'filter:' : 'none'