javascript 中实现text 值每秒加1var k = setInterval(function () { document.getElementById("text").value+=1 }, 1000) 加够了后利用这个停止 win2023-02-22JavaScript210