Главная > Javascript > Автоматизация – открытие большого колличества однотипных ссылок (разный ID) — V2

Автоматизация – открытие большого колличества однотипных ссылок (разный ID) — V2

Теперь можно задать интервал, начальное значение, остановить, ну да и красивенько)))

<html>
<head>
	<style type="text/css">
		* {
			margin: 10px;
		}
		body {
			color: #505050;
			font-size: 22px;
		}
		input {
			border: 1px solid #ccc;
			color: #505050;
			font-size: 22px;
		}
		iframe {
			border: 10px solid #3e6093;
		}
		label:hover {
			text-decoration: underline;
		}
		#go {
			color: #4fad51;
		}
		#br {
			color: #e03c42;
		}
	</style>
</head>
<body>
<iframe id="edboframe" width="1000px" border="1" height="400px" src=""></iframe><br/>
<label for="lid">Start with:</label>&nbsp;<input type="text" id="lid" value="1" />&nbsp;
<label for="timer">Interval:</label>&nbsp;<input type="text" id="timer" value="3" /><br/>
<input type="button" id="go" value="Start" onclick="StartScript();" />&nbsp;
<input type="button" id="br" value="Stop" onclick="StopScript();" /><br/>
<script type="text/javascript">
	function StartScript() {
		var ed=document.getElementById('edboframe');
		var id=document.getElementById('lid');
		var to=document.getElementById('timer');
		var next=(id.value*1)+1;
		ed.src='http://10.61.9.15/lists_abiturients/?id='+next+'&action=edboup';
		id.value=next;
		setTimeout(StartScript,to.value*1000);
	}
	function StopScript() {
		var to=document.getElementById('timer');
		to.value=9999;
	}
</script>
</body>
</html>
Categories: Javascript Tags:
  1. Пока что нет комментариев.
Похожие публикации