使用jquery定时更新区域

Time:2020/9/14  keywords:jQuery,定时,更新

    今日使用jquery 定时更新页面区域中的 内容,发现网上很多代码都不正确,特此更新一下使用jquery+setInterval 定时更新页面区域中得内容得笔记已备以后使用:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> New Document </title>

  <meta charset="utf-8">
  <script src="http://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
 </head>

 <body>
  11111
  <div id="de3" style="border:2px solid red;"><font color="blue">qwe</color></div>
  <script type="text/javascript">
  var de=$('#de3').html();//获取 id 的内容
  function tt(){
		
		$('#de3').append('<br>'+de);//制作 为指定 id 增加内容的方法
		//alert(de);
	}
  $(function(){
	
	setInterval(function(){tt();},1000);//间隔1秒执行tt()

	
  });
  </script>
 </body>
</html>