gpt4 book ai didi

javascript onsubmit 没有提交按钮,通过键盘输入

转载 作者:行者123 更新时间:2023-11-28 01:48:46 25 4
gpt4 key购买 nike

我有这段html代码:

<form id="cambia_stato" method="get" action="">
<input type="text" name="stato" id="frase_stato" value=""
onclick="this.value='';" onblur="setMessaggio()" maxlength="255"
/>
</form>

我想检查提交时“stato”字段的值。我尝试了两种方法:按 Enter 键不会触发使用 onsubmit:

<!-- nothing happens with the following -->
<form id="cambia_stato" method="get" action="" onsubmit="myFunc()">

因此,我尝试在每次按下按键时检查输入,更改输入属性,添加 onkeypressed 事件:

<!-- nothing happens with the following -->
<input type="text" name="stato" id="frase_stato" value=""
onclick="this.value='';" onblur="setMessaggio()" maxlength="255"
onkeypressed="myFunc()" />

目前,函数 myFunc() 定义如下:

function myFunc ()
{
alert('test');
}

我是否在某个地方出错了,或者我需要一个提交按钮吗?

最佳答案

将其添加到您的 JavaScript 中。这将捕获回车键。

    document.onkeydown = function () {
if (event.keyCode === 13) {
myFunc();
}
};

关于javascript onsubmit 没有提交按钮,通过键盘输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19979319/

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