用AJAX刷新一个DIV中的jsp内容<script type="text/javascript">var xmlhttp;function startrefresh(){}</script>如果让这个div自动刷新的话,可以用setInterval('startrefresh()',5000),这个函数的作用是每隔5秒自动执行一次startrefresh方法,还有一种方法是setTimeout('startrefresh()',5000),但是这个方法只会执行一次。