几个小时前我正在搜索这个,我找不到任何地方。
我使用简单的 Jquery 脚本来刷新 div。我想在那个 div 中查看我的 PHP 输出。
$script = "
<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js\"></script>
<script type=\"text/javascript\">// <![CDATA[
$(document).ready(function() {
$.ajaxSetup({ cache: false }); // This part addresses an IE bug. without it, IE will only load the first number and will never refresh
setInterval(function() {
$('#uziRefresh').load('http://mypage/refresh.php?a_a=".$kinek[1]."');
}, 6000); // the \"3000\" here refers to the time to refresh the div. it is in milliseconds.
});
// ]]></script>
";
我的问题是。当它刷新时,它会转到 div 滚动的顶部位置。我想保留当前位置,因为我的用户想阅读 div 的所有内容。我想做一个简单的聊天应用程序。但这很糟糕,因为总是排在首位。
我该如何解决这个问题?有人有解决方案吗?