gpt4 book ai didi

javascript - 当打字光标离开输入文本字段时如何触发函数?

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

我想在打字光标离开输入文本字段时触发一个函数。这样的事件存在吗?如果有人知道请告诉我,谢谢。

// to trigger this function
function trigger () {
console.log("no longer able to type in input text);
}

最佳答案

只需使用 onblur 即可。您可以在 vanilla js 和 jquery 中执行此操作。

普通 Js:

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

document.getElementById('waffle').addEventListener('blur', function(){
alert('exited waffle');
});
<input type="text" onblur="test()">
<input type="text" id="waffle">

使用 JQuery:

$('#test').on('blur', function(){
alert('exited');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input id="test" type="text">

Jquery 引用:https://api.jquery.com/blur/

原版:https://developer.mozilla.org/en-US/docs/Web/Events/blur

关于javascript - 当打字光标离开输入文本字段时如何触发函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54047652/

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