此演示代码循环 3 次,每次都附加文本。我需要的是文本不会被附加而是被替换,因此在添加新文本之前应该删除以前附加的文本。我已经尝试了很多东西,没有任何效果。
编辑:您不能在跨度之后添加额外的标签!
<div>
<span id="i_1">this is </span>
</div>
var i = 3;
while(i>0)
{
//// how to remove the text added on the previous iteration?
$("#i_1").after('text');
i--;
}