2015-08-17 121 views
0

我有這個jQuery刷新div,一旦它重新加載它刪除div內的內容。有人可以幫助我解決它,因此它可以刷新而無需刪除div中的內容?我想刷新這個div及其內容

$(document).ready(function() { 
 
    setInterval(function() { 
 
    var message = $('#show'); 
 
    $('#show').html(''); 
 
    }, 3000); 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<div id="show" align="center">Refresh me</div>

+4

你的意思_refresh_? – Grundy

+0

您當前分配一個未使用的變量並每隔3秒清空一個div。你真的想做什麼? – thomas

+1

我寧願說「你期望什麼?」 :-P – leaf

回答

0
//I don't know why the heck you want to do these. 
$(document).ready(function() { 
    var message = $('#show').text(); // retrieve the text bet^ the div 
    setInterval(function() { 
    $('#show').html(message); //Add the text bet^ the div 
}, 3000); 
}); 

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
<div id="show" align="center">Refresh me</div> 
+0

你的代碼片段是什麼?以及它如何回答質疑? – Grundy

+0

對不起,這不是一個更好的答案 –

+0

@PeterValentine,所以你能解釋一下你的期望嗎?現在 – Grundy