gpt4 book ai didi

javascript - 在移动设备上输入标签javascript事件

转载 作者:太空宇宙 更新时间:2023-11-04 15:53:32 27 4
gpt4 key购买 nike

input 事件在移动设备上不起作用,但在桌面上起作用。另外,我尝试过 touchend 但没有结果。我需要的是捕获移动设备上输入框的 change 事件。 change 事件适用于下拉列表,但不适用于输入标记。

这是我的代码。

jQuery(document).on('input touchstart touchend change', element, function(){
var val = this.value
//do things;
});

有人可以帮忙吗?

最佳答案

我认为您没有以正确的方式绑定(bind)更改事件,这也适用于移动设备:

$("#inp").change(function(){
alert($("#inp").val());
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<input id="inp" type="text"/>

关于javascript - 在移动设备上输入标签javascript事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42901223/

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