Jquery / JS bind quot;pastequot; event handler to input textbox(Jquery/JS 绑定“粘贴输入文本框的事件处理程序)
问题描述
好的,所以我有一个输入框,每次更改时我都需要做一些事情,我在鼠标粘贴时遇到了麻烦.这是我的代码
Allright, SO i have an input box and I need to do things everytime it changes, I am having trouble doing it for mouse paste. Here is the code I have
$("#attack-navy"+unit.ID+"-number").bind('paste', function(){
alert("paste detected");
$("#attack-max-capacity").text(getMaxCapacity());
});
getMaxCapacity() 函数现在返回输入的数字 * 30;
the getMaxCapacity() function return number entered * 30 for now;
这是当
1:我粘贴了 3,它不会改变(我仍然看到警报)
2:那么当我粘贴 5 时,它将是 90(3 * 30)
3:那么如果我粘贴 10,它将是 150(5 * 30),依此类推.
Here is the scenario when
1: I paste 3, it will not change (i still see the alert)
2: Then when i paste 5, it will be 90(3 * 30)
3: Then if i paste 10 it will be 150(5 * 30), and so on.
我认为它在粘贴实际发生之前执行处理程序.关于我能做什么的任何想法?(.change 不起作用,它必须在你粘贴后立即发生)
I think its doing the handler before the paste actually occurs. Any ideas on what I can do? (.change will not work, it must happen as soon as u paste)
推荐答案
您应该处理 input
和 propertychange
事件.
演示.
You should handle the input
and propertychange
events.
Demo.
这篇关于Jquery/JS 绑定“粘贴"输入文本框的事件处理程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Jquery/JS 绑定“粘贴"输入文本框的事件处理程序
基础教程推荐
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01