gpt4 book ai didi

javascript - 使用 Enter 键执行文本字段功能

转载 作者:行者123 更新时间:2023-12-03 05:52:51 24 4
gpt4 key购买 nike

我尝试使用的代码。请告诉我我做错了什么。我不太擅长 JavaScript,所以不要评判。

<!-- Textfield with Floating Label -->

<form action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="userInput" onkeypress="handle(e)">
<label class="mdl-textfield__label" for="userInput">Answer Here</label>
</div>
</form>

<script>
function handle(e){
if(e.keyCode === 13){
e.preventDefault(); // Ensure it is only this code that rusn
var input = document.getElementById("userInput").value;
alert(input);
}
}
</script>
</body>
</html>

最佳答案

您可能想要传递事件,而不仅仅是e

<input class="mdl-textfield__input" type="text" id="userInput" onkeypress="handle(event)">

<form action="#">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="userInput" onkeypress="handle(event)">
<label class="mdl-textfield__label" for="userInput">Answer Here</label>
</div>
</form>

<script>
function handle(e) {
if (e.keyCode === 13) {
e.preventDefault(); // Ensure it is only this code that rusn
var input = document.getElementById("userInput").value;
alert(input);
}
}
</script>

最好使用 addEventListener 代替

document.getElementById('userInput').addEventListener('keypress', function(e) {
if(e.keyCode === 13) {
e.preventDefault();
var input = this.value;
alert(input);
}
});

关于javascript - 使用 Enter 键执行文本字段功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40070740/

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