我正在使用下面的JavaScript來拉動'回到頂部'按鈕時向下滾動。jquery javascript chrome/Safari瀏覽器問題
這對Firefox非常有用 - 但不適用於Chrome/Safari。
jQuery(document).ready(function(){
jQuery("#totop").hide();
jQuery(window).scroll(function(){
if (jQuery(this).scrollTop() > 100) {
jQuery('#totop').fadeIn();
} else {
jQuery('#totop').fadeOut();
}
});
jQuery('#totop').click(function(){
jQuery("html, body").animate({ scrollTop: 0 }, 660, 'easeInOutExpo');
return false;
});
});
我一直在使用noConflict嘗試。
我沒有看到它在Chrome或FF。 – j08691
你有沒有得到任何javascript錯誤? – geevee
檢查你的控制檯是否有異常...:'Uncaught TypeError:Object function(a,b){return document.id(a,b,this.document)}沒有方法'noConflict''。 Chrome 32.0.1664.3金絲雀 –