$('.target1').keydown(function(e) { $("em:first").text(e.target.value)//为什么按下第二次才开始显示绑定事件元素的value? });
数据分析师2017-09-30 23:06:16
Why does the value of the bound event element start to display only after pressing it for the second time? -PHP Chinese website Q&A-Why does the value of the bound event element start to display only after pressing it for the second time? -PHP Chinese website Q&A
Please watch and learn.
迷茫2016-12-20 11:28:05
按键按下显示内容,你第一次按键(例如:r)的时候元素的内容是空的,当你第二次开始按的时候,这时元素里面已经有一个内容(即:r),这时就会把这个r显示出来。这也就是你说的按下后第二次才开始显示。你可以仔细看看这节课程刚开始的时候所说的内容,你明白了keydown事件的触发过程,你就懂了。