智能手机文本输入的 JS 事件处理程序是什么 "done"
What's the JS event handler for smartphone text input "done"
有没有办法在用户点击输入文本字段上的 "done" 时进行捕捉?
我想在用户关闭文本框时调用一个函数,但我找不到方法
您可以使用 onblur 或 focusout 事件。
<input type="text" onblur="myFunction()">
或
<input type="text" onfocusout="myFunction()">
有没有办法在用户点击输入文本字段上的 "done" 时进行捕捉?
我想在用户关闭文本框时调用一个函数,但我找不到方法
您可以使用 onblur 或 focusout 事件。
<input type="text" onblur="myFunction()">
或
<input type="text" onfocusout="myFunction()">