gpt4 book ai didi

javascript - 无法调用js对象的keyup函数

转载 作者:行者123 更新时间:2023-11-30 10:50:35 26 4
gpt4 key购买 nike

这是代码 http://jsfiddle.net/8ZzER/26/

我尝试调用绑定(bind)到 keyup 的函数,但 keyPres 变量为空

HTML

<input id="text" name="text" type="text" onkeyup="alert('Boom')"  
value="Key up here"/>
<input type="button" id="fire" value="fire" />

JavaScript

document.getElementById("fire").onclick=function()
{
var textElement = document.getElementById("fire");
var keyPres= textElement.onkeyup;
keyPres.call();
}

最佳答案

您的处理程序位于“id”值为“text”的元素上,但您的代码查找“fire”。

<input id="text" name="text" type="text" onkeyup="alert('Boom')"  
value="Key up here"/>
<input type="button" id="fire" value="fire" />

处理程序应该如下所示:

// says "fire" in your jsFiddle
var textElement = document.getElementById("text");
var keyPres= textElement.onkeyup;
keyPres.call();

关于javascript - 无法调用js对象的keyup函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5614195/

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