gpt4 book ai didi

javascript onkeypress 返回后调用函数

转载 作者:行者123 更新时间:2023-11-28 02:09:03 28 4
gpt4 key购买 nike

使用 Javascript 的 onKeypress 尝试在返回后调用函数。这不起作用,因为由于验证数字,该字段尚未完成。

onKeyPress="return numbersonly(event, false);
anotherfunction();"

让这个问题变得棘手的是返回必须在调用“anotherfunction()”之前发生。

最佳答案

使用这个:

onkeypress="if (numbersonly(event, false)) {anotherfunction(); return true;} else {return false}"

由于像这样的长内联 Javascript 让我烦恼,我会将其移出到一个函数中:

function maybe_another(event) {
if (numbersonly(event, false)) {
anotherfunction();
return true;
} else {
return false
}
}

然后使用:

onkeypress="return maybe_another(event)"

在输入元素中。

关于javascript onkeypress 返回后调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17374928/

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