代码
html
<p>未使用setTimeout函数</p>
<p id="one">
<input type="text" id="input" value="">
<span></span>
</p>
<p>使用setTimeout函数</p>
<p id="second">
<input type="text" id="input" value="">
<span></span>
</p>
js
document.querySelector('#one input').onkeydown = function() {
document.querySelector('#one span').innerHTML = this.value;
}
document.querySelector('#second input').onkeydown = function() {
setTimeout(function() {
document.querySelector('#second span').innerHTML = document.querySelector('#second input').value;
}, 0);
}
现象
慕桂英546537
慕无忌1623718
烙印99
喵喔喔
ibeautiful
至尊宝的传说
相关分类