antonn, нужная твоя помощь..
вот такая страничка добавляет тхт файл в input(поле), как сделать, чтобы функция load() запускалась сразу при загрузке странички..?
<html>
<script>
var xmlDoc = null ;
function load() {
if (typeof window.ActiveXObject != 'undefined' ) {
xmlDoc = new ActiveXObject("Microsoft.XMLHTTP");
xmlDoc.onreadystatechange = process ;
}
else {
xmlDoc = new XMLHttpRequest();
xmlDoc.onload = process ;
}
xmlDoc.open( "GET", "1.txt", true );
xmlDoc.send( null );
}
function process() {
if ( xmlDoc.readyState != 4 ) return ;
document.getElementById("output").value = xmlDoc.responseText ;
}
</script>
<body>
<input id="output" cols="60" rows="20"></input>
<br></br>
</body>
</html>
Спасибо заранее..) | |