刷新页面而不使用ajax调用外部页面

时间:2014-06-13 22:07:58

标签: jquery ajax

有没有办法只刷新div而不调用外部页面。我的页面上有一个div,它有一个动态绑定绑定它,我希望它每3秒刷新一次。我有这个代码,但似乎加载外部页面。

</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() {
    $('#freq_count').load('count_freq.asp');
    }, 3000); // the "3000" here refers to the time to refresh the div. it is in milliseconds.
    });

    // ]]></script>

我相信有一条出路,我只能在不打电话的情况下刷新div。

1 个答案:

答案 0 :(得分:0)

如果我理解你的需要,jQuery的load已经开箱即用了:

$('#freq_count').load('count_freq.asp #freq_count');

这将查询整个页面(当然,还有什么可以请求count_freq.asp查询),但只将过滤后的部分加载到div中。