基金行情查看
2019-11-05 本文已影响0人
橘子HW
<!DOCTYPE html>
<html>
<head>
<title>基金行情</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<script type="text/javascript">
//改基金的code
var jj=["161725","110022","002692","001956","004851","001302"];
timedCount();
function timedCount()
{
for(j in jj)
{
var thisNode=document.getElementById(j);
if(thisNode !=null)
document.body.removeChild(thisNode);
document.write('<img id="'+j+'" src="http://j4.dfcfw.com/charts/pic6/'+jj[j]+'.png?t='+Math.random()+'" >');
}
t=setTimeout("timedCount()",10000)
}
</script>
</body>
</html>