递归问题
当我有两个文本字段监听从一个到另一个的更改事件时,它会导致我出现错误,提示递归太多。有人有好的解决办法吗?
When I have two text fields which listen to change event from one to another, it causes me an error saying too much recursion. Anyone has good solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么你可以持有一个标志来保存真正的事件调度程序的身份。如果匹配则中断事件触发。
well you can hold a flag that holds the identity of the true event dispatcher. and break the event triggering if it matches.
您在两个文本字段上添加了 onchange 事件侦听器;问题是,更改一个文本将触发另一个字段的更改,这将触发第一个字段的 onchange 结果,依此类推,从而导致无限循环。
You added an onchange event listener on both text fields; problem is, changing one text will trigger a change one the other field, which would trigger the onchange result for the first one, etc., resulting in an infinite loop.