gpt4 book ai didi

javascript - 像研究 Jquery 一样的彩蛋

转载 作者:行者123 更新时间:2023-11-30 12:24:57 25 4
gpt4 key购买 nike

我想通过打字制作一个研究系统,这样它就可以像彩蛋一样工作。例如:我在网站上键入“albert”,Jquery 脚本将滚动到 ID 为#albert 的 div。

首先,你认为这可能吗?

我已经尝试使用 keyup 监听器,但所有检索的功能都是数字,也许是 ASCII。我试过类似的东西:

$(document).keyup(function(e) {
input += e.which;
clearTimeout(timer);
timer = setTimeout(function() { input = ""; }, 500);
goto();
});

function goto() {
alert(input); // display only numbers
$('html, body').animate({
scrollTop: ($("#" + input).offset().top)
},500);
}

最佳答案

关闭。使用 String.fromCharCode:

var input = "";
var timer = null;
$(document).keypress(function(e) {
input += String.fromCharCode(e.which);
clearTimeout(timer);
timer = setTimeout(function() { input = ""; }, 500);
goto();
});

function goto() {
if (input == "albert") alert("Hello, Albert.");
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

关于javascript - 像研究 Jquery 一样的彩蛋,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29739555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com