在 FireFox 中,每次按键时替换innerHTML 都非常慢
我的脚本只是显示还剩多少个字符需要输入。 因此,150
的每个 keyup html 都通过使用 jquery 的 html() 替换为可用的数字。 我已经尝试过这种方式,但在 FF 中仍然变得非常慢。 还有其他方法可以解决问题吗?
My script is just to display how many number of characters left to type.
So every keyup html of, <span class="number">150</span>
is replaced with available number by using jquery's html().
I've tried this way but still getting extremely slow in FF.
Is there any other method to solve the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
而不是
- 只需正确设置样式即可,然后使用 jQuery
$('#myInput').val().
Use
<input>
instead of<span>
- just style it properly and than use jQuery$('#myInput').val()
.