Q
爲一定的時間
1
A
回答
1
你可以這樣做:
$(".test").click(function(e){
e.preventDefault();
var that = this;
var text = $(this).html();
$(this).html("saved");
setTimeout(function(){
//fade back
$(that).html(text);
}, 1000);
});
0
您可以存儲以前的數據($(本)的.html()),更改文本,然後用setTimeout指定的時間量後的文本復位。
3
你必須使用setTimeout
,像這樣:
<a href="" class="test">save</a>
$(".test").click(function(e){
e.preventDefault();
var previousText = $(this).html();
$(this).html("saved");
setTimeout(function() { $(this).html(previousText) }, 500);
};
1
請嘗試以下
$(document).ready(function() {
$('.test').click(function(e) {
var link = this;
e.preventDefault();
$(this).html("saved");
setTimeout(function() { $(link).fadeOut(1000) }, 500);
});
});
0
事情是這樣的:
$(".test").click(function(e){
var $a = $(this);
var txt = $a.html();
$a.html("saved").fadeOut('slow', function() { $a.html(txt).fadeIn('fast'); });
return false;
})
你Ç在淡入淡出方法中,以毫秒爲單位指定任何值,而不是「慢」或「快」。
相關問題
- 1. 獲得,因爲特定的時間戳,因爲一個特定的時間戳說,自從20120801185856時間戳
- 2. AngularJS - 爲一定時間後POST請求
- 3. 在一定時間間隔
- 4. 一定時間戳
- 5. Heroku的:在一定時間
- 6. setPressed一定的時間段
- 7. DSolve爲特定的時間間隔
- 8. 設定時間戳的時間部分爲固定值
- 9. 一個特定的時間間隔
- 10. 總結到一定的時間間隔
- 11. 在一定的時間間隔
- 12. 暫停腳本直到一定的時間,並在另一一定時間
- 13. 如何在一個特定的時間間隔的一些值設置爲零
- 14. sql - 添加時間間隔跳過一定的時間段
- 15. 設定時間爲標誌
- 16. 爲「end_of_week」定義時間
- 17. 如何以一秒爲間隔顯示擺動定時器的剩餘時間?
- 18. 如何返回一個UNIX時間戳爲特定的UNIX時間戳PHP
- 19. 激活功能作爲一個特定的時間,然後X時間
- 20. 在一定的時間後獲取動態時間和超時
- 21. 延遲經一定時間
- 22. 將給定時間戳轉換爲特定時區中的當前時間
- 23. 查詢'Now'的日期時間列減去一定的時間?
- 24. 確定一個時間間隔
- 25. 將另一個時區的時間換算爲當地時間當地時間
- 26. 計算指定時間段內值爲1的總時間
- 27. 如何特定的時間轉換爲UTC時間戳
- 28. 將時間間隔從5秒改變爲特定時間
- 29. 運行一定的時間的方法
- 30. 爲New-AzureStorageAccount cmdlet指定超時時間
謝謝你,你就是真棒。我還有一個問題:如何處理css? 我試過像html一樣的方式,但它不起作用 var css = $(this).css(); – Writecoder
啊我修好了: var css = $(this).css(「margin-right」); $(that).css(「margin-right」,css); – Writecoder