0
我想讓用戶在塊內的HTML更改之前等待2秒鐘。你能不能幫我設置了一些時間,使Ajax請求是沒有那麼快,我有時間顯示一些動畫我想延遲jQuery ajax成功的功能
我試圖設置超時時間,但它不工作
jQuery(document).ready(function($) {
$(document).on('click', '#wp-request', function(event){
\t event.preventDefault(); \t
\t var path = myScript.pluginsUrl + '/simple/widget-final.php';
\t \t \t \t $.ajax({
\t \t \t \t \t type : 'POST',
url: path,
cache: false,
\t \t \t \t \t success : function(data){
\t \t \t \t \t var newWidget = $(data);
\t \t \t \t \t $('#widget-container').replaceWith(newWidget);
\t \t \t \t \t },
\t \t \t \t \t error : function(){ alert('Error'); },
\t \t \t \t \t dataType : 'html'
});
\t \t \t \t
});
$(document).on('click', '#wp-back', function(event){
\t \t \t \t event.preventDefault();
\t \t \t \t var path = myScript.pluginsUrl + '/simple/widget-initial.php';
\t \t \t \t $.ajax({
\t \t \t \t \t type : 'POST',
url: path,
cache: false,
\t \t \t \t \t success : function(data){
\t \t \t \t \t var newWidget = $(data);
\t \t \t \t \t $('#widget-container').replaceWith(newWidget);
\t \t \t \t \t },
\t \t \t \t \t error : function(){ alert('Error'); },
\t \t \t \t \t dataType : 'html'
});
\t \t \t \t
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="widget-container">
<p>We are on first page</p>
<a id="wp-request" href="">Send</a>
</div>
在成功回調中應用'setTimeout' –