<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<th id="products"></th>
</tr>
</table>
这是js的代码
new Ajax.PeriodicalUpdater('products', 'test.php',
{
method: 'get',
insertion: Insertion.Top,
frequency: 1,
decay: 1
}
);
但结果很糟糕,它每次添加和添加相同的数据,它不会替换,我做错了什么?
答案 0 :(得分:2)
嗯,你正在插入,所以它......插入。
仅供参考,Insertion.Top is deprecated支持Element#insert,但你想要的是Element#replace。
但是,默认是要替换的 - 通过指定一个insertion
属性来覆盖默认值。有关详细信息,请参阅Updater docs。