<script> window.onload = function () { var odiv = document.getElementById("div1"); var timer = null; document.onkeyup = function () { clearInterval(timer); timer=null; } document.onkeydown = function (ev) { var oEven = ev || event; clearInterval(timer); timer = setInterval(function () { if (oEven.keyCode == 37) { odiv.style.left = odiv.offsetLeft - 10 + "px"; } else if (oEven.keyCode == 39) { odiv.style.left = odiv.offsetLeft + 10 + "px"; } }, 100) } }</script>
添加回答
举报
0/150
提交
取消