Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
不久前我发现这段代码与 html 元素一起使用
$("a[href='#top']").click(function() { $("html, body").animate({ scrollTop: 0 }, "slow"); return false; });
但是当按下 't' 键时如何触发呢?适用于所有主流浏览器?
$(window).keyup(function(e){ if(e.keyCode == 84){ $("html, body").animate({ scrollTop: 0 }, "slow"); } return false; });