onchange要文本框失焦才会触发,换一种方法:
$(document).on(‘input propertychange‘,‘#inputContainer‘,function (e) { if (e.type === "input" || e.orignalEvent.propertyName === "value") { alert(this.value) } })
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS实现移动端实时监听输入框变化的实例代码相关的知识,希望对你有一定的参考价值。
onchange要文本框失焦才会触发,换一种方法:
$(document).on(‘input propertychange‘,‘#inputContainer‘,function (e) { if (e.type === "input" || e.orignalEvent.propertyName === "value") { alert(this.value) } })
以上是关于JS实现移动端实时监听输入框变化的实例代码的主要内容,如果未能解决你的问题,请参考以下文章