<!DOCTYPE html>
<!--
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<iframe src="https://www.baidu.com/" id="frame1" style="width: 100%;height: 2000px;"></iframe>
</body>
<script>
var repet = function(){
var ff = false,url;
setInterval( function(){
if(ff){
url="https://www.baidu.com//"; //报表1 链接
ff = false;
}
else{
url="http://www.sina.com"; ////报表2 链接
ff = true;
}
document.getElementById("frame1").src = url;
},10000);
}
(function(){
repet();
})()
</script>
</html>
-->