我正在尝试通过在页面上输入“hello”这个句子转发到名为“test.html”的页面。例如,当我在页面上输入“hello”时,我会转发到test.html。它不会出现在文本框中;我会在没看到我正在打字的情况下输入它。我在网上对此进行过研究,但在这个主题上找不到任何内容。
答案 0 :(得分:1)
我不知道它会起什么作用,但你可以做那样的事情。
keypress
侦听器。 sec
。sec
连接并比较if
sec=="hello" do redirect
的Javascript
(function(){
document.addEventListener("keypress",fun);
var sec='';
function fun(e){
sec += String.fromCharCode(e.keyCode);
if(sec=="hello"){
alert("Hello typed!"); //replace this with redirect
sec='';
}
}
})();