我有一个div,它每3秒刷新一次。在那个div里面有一个输入框,我输入的任何内容都会在3秒内清除掉。有没有办法让文本保留在输入框内而不是被清除?
index.js
<div id="show_here"></div>
<script type ="text/javascript">
$(document).ready(function() {
setInterval(function() {
$('#show_here').load('fetch.php')
}, 3000);
});
</script>
fetch.php
<div>
// some code here
<input type="text" id="input" />
</div>
输入框需要位于该页面内,因为它位于while循环中。可以这样做,还是我需要更改我的整个代码才能使其正常工作?
答案 0 :(得分:2)
保留然后设置
setInterval(function() {
my_val = $('#input').val();
$('#show_here').load('fetch.php');
$('#input').val(my_val);
}, 3000);