1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<html>
<head>
</head>
<script type="text/javascript">
{
function goGoogle()
{
alert('Google');
document.location =("http://www.google.com");
}
function goMicrosoft()
{
alert('Microsoft');
document.location =("http://www.microsoft.com");
}
function waitMicrosoft()
{
ID = self.setTimeout("goMicrosoft();",10000);
}
function executeFunction()
{
goGoogle();
waitMicrosoft();
}
}
</script>
<body>
<script language="JavaScript">
executeFunction();
</script>
</body>
</html> |
Partager