每秒隨機產生一個值,並更新至隨機一個成交價欄位,並且該字會亮起一秒然後恢復原樣我的字沒法恢復原本的黑色,求解,<td>的id分別為"price1","price2","price3",表格更多時,用這種方式寫這個功能好嗎?function update(){ var n = $("#" + "price" + Math.floor(Math.random() * 3 + 1));
n.html(2 * Math.random().toFixed(4));
n.each(function(){
$(this).addClass("cc");
})
$(this).removeClass("cc");
}
setInterval(update, 1 * 1000);
添加回答
举报
0/150
提交
取消