我正在使用终端,我希望每次更改文本而不使用新行
这是我的代码
var c = 0;
var t;
var timer_is_on = 0;
function timedCount() {
term.pause();
if (c == 100) {
clearTimeout(t);
}
else {
term.echo(c);
c = c + 1;
t = setTimeout(function(){ timedCount() }, 100);
t = setTimeout(function(){ timeClear() }, 900)
}
}
function timeClear(){
term.clear();
}
function startCount() {
if (!timer_is_on) {
timer_is_on = 1;
timedCount();
}
}
function stopCount() {
clearTimeout(t);
timer_is_on = 0;
}
timedCount();
我尝试每隔一秒添加文字而不添加新行
示例:Hello + 1
,Hello 2