Do not use setTimeout() for this type of action, rather use setInterval().
var intervalId = setInterval(function() {
/* Do your magic */
}, 2000);
To clear your interval, simply clearInterval(intervalId)
, when you wish to stop the ping:ing.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…