我想改變AP的文本與jQuery的 「淡入淡出效果」 每3秒:更改文本中每3秒鐘,淡入淡出效果
<p class="first">Conected</p>
到
<p class="second">2547</p>
我想改變AP的文本與jQuery的 「淡入淡出效果」 每3秒:更改文本中每3秒鐘,淡入淡出效果
<p class="first">Conected</p>
到
<p class="second">2547</p>
可以使用的setInterval https://developer.mozilla.org/en-US/docs/DOM/window.setInterval
setInterval(function() {
$('p').fadeOut(500, function() {
var $this = $(this);
$this.text($this.text() == 'Connected' ? '2457' : 'Connected');
$this.toggleClass('first second');
$this.fadeIn(500);
});
}, 3000);
尼斯。我可以看到有人可能使用:$(this).text($(this).text()=='需要幫助嗎?''請點擊這裏!':'需要幫助嗎?');在一個錨而不是一個P只是爲了引起人們對鏈接的關注。 – mikeY 2012-08-17 17:36:30
的setInterval或等待
setInterval http://www.w3schools.com/js/js_timing.asp
JQuery Wait http://api.jquery.com/delay/
退房'的setInterval()' – jli 2012-08-17 16:39:20