日期:2014-05-17 浏览次数:20731 次
$(document).ready(function(){ setInterval(getMethod, 20000); function getMethod() { $.get("www.xxx.com/abc.asp?" + Math.random(), function(data){ $("#test").html(data); }); } });