需求:监听Ctrl + F 键,执行搜索框显示,并光标定位到搜索框。 知识储备: 1、键盘按键键码值(keyCode),字母和数字键的键码值 (keyCode) 2、监听ctrl(cmd)+ s事件: document.onkeydown = function(e) { var keyCode = e.keyCode || e.which || e…
滚动到顶部,Class名为go-top的点击事件: jQuery('.go-top').on('click', function (e) { e.preventDefault(); jQuery('html, body').animate({ scrollTop: 0 }, duration); return false; }) 滚动到底部,Cla…