Kann mir jemand beim Auslagern für eine js Datei helfen

Grafikzauber

Grünschnabel
Hallo an alle,

kann mir jemand bei diesem Script helfen in auszulagern zu einer js Datei. Wäre super lieb da ih nicht so die große Ahnung mit Java Script habe.
Hier mal der Script:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>©GZ</title>
<SCRIPT LANGUAGE="JavaScript">
navvers = navigator.appVersion.substring(0,1);
if (navvers > 3)
	navok = true;
else
	navok = false;

today = new Date;
numero = today.getDate();
if (numero<10)
	numero = "0"+numero;
mois = today.getMonth();
if (navok)
	annee = today.getFullYear();
else
	annee = today.getYear();
mois++;
if (mois < 10)
	mois = "0" + mois;
messageDate = numero + "/" + mois + "/" + annee;
function HeureCheck()
{
krucial = new Date;
heure = krucial.getHours();
min = krucial.getMinutes();
sec = krucial.getSeconds();
jour = krucial.getDate();
mois = krucial.getMonth()+1;
annee = krucial.getFullYear();
if (sec < 10)
sec0 = "0";
else
sec0 = "";
if (min < 10)
min0 = "0";
else
min0 = "";
if (heure < 10)
heure0 = "0";
else
heure0 = "";
DinaHeure = heure0 + heure + ":" + min0 + min + ":" + sec0 + sec;
which = DinaHeure
if (document.all){
dynamic3.innerHTML='<center>00:00:00</center>'
dynamic3.innerHTML='<FONT SIZE=1 FACE=" Arial"><B>'+which+'</B></FONT>';
}
else if (document.layers){
document.dynamic1.document.dynamic2.document.write(''+which+'')
document.dynamic1.document.dynamic2.document.close()
}
tempo = setTimeout("HeureCheck()", 1000)
}
</SCRIPT>
</head>
<body onLoad="HeureCheck()" onUnload="clearTimeout(tempo)">


<table border="0" cellspacing="0" cellpadding="0" width="50" height="50">
  <tr>
<td bgcolor="#facd7a" style="border: 1 solid #c7692c" >
<table border="1" width="100%" height="100%" bordercolor="#C7692C">
<tr>
<!--  couleur fond et texte -->
<td  background="#c7692c"><CENTER>
<font color="#c7692c">
<!--  fin couleur fond et texte -->
<FONT SIZE=1 FACE="arial"><B><SCRIPT LANGUAGE="JavaScript"> document.write(messageDate); </SCRIPT>
              </B></FONT> 
              <!-- image ici  -->
              <a target="_blank" title="©Delphinlady" href="http://www.grafikzauber-auf-psp.com"> 
              <img border="0" src="time01.jpg" width="100" height="100"></a>
              <!-- fin image ici -->
              </a> 
              <ilayer id="dynamic1" width=100% height=15><layer id="dynamic2" width=100% height=15><div id="dynamic3"></div></layer></ilayer>
        </font></CENTER>
		</td>
	</tr>
</table>
	</tr>
</table>

Ich danke schon mal für eure Hilfe.

Liebe Grüße Grafikzauber
 
Hi,

Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>©GZ</title>
<script type="text/javascript" src="script.js"></script>
</head>
<body onLoad="HeureCheck()" onUnload="clearTimeout(tempo)">


<table border="0" cellspacing="0" cellpadding="0" width="50" height="50">
  <tr>
<td bgcolor="#facd7a" style="border: 1 solid #c7692c" >
<table border="1" width="100%" height="100%" bordercolor="#C7692C">
<tr>
<!--  couleur fond et texte -->
<td  background="#c7692c"><CENTER>
<font color="#c7692c">
<!--  fin couleur fond et texte -->
<FONT SIZE=1 FACE="arial"><B><SCRIPT LANGUAGE="JavaScript"> document.write(messageDate); </SCRIPT>
              </B></FONT> 
              <!-- image ici  -->
              <a target="_blank" title="©Delphinlady" href="http://www.grafikzauber-auf-psp.com"> 
              <img border="0" src="time01.jpg" width="100" height="100"></a>
              <!-- fin image ici -->
              </a> 
              <ilayer id="dynamic1" width=100% height=15><layer id="dynamic2" width=100% height=15><div id="dynamic3"></div></layer></ilayer>
        </font></CENTER>
		</td>
	</tr>
</table>
	</tr>
</table>
die angehängte script.txt einfach in script.js umbenennen und in dem gleichen Verzeichnis ablegen, in dem sich das HTML-Dokument befindet.
 

Anhänge

Leider geht es bei mir wirklich nicht so bald ich es in Frontpage einbaue und dann auf meine Webseite lade zeigt er mir eine Fehlermeldung.
Wenn ich es ohne Auslagerung mache und dann auf meiner Seite diesen Script einbaue funktuniert es:
<iframe src="http://www.grafikzauber-auf-psp.com/time/time01/time01.htm" width=112 height=140 MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=no></iframe>
Aber ich würde es gerne als js Datei auf meiner Seite anbieten.
Geht sowas?
Sag schon mal danke im Voraus

LG Grafikzauber
 
So wie ich das überblicke, mußt du die Script-Datei in dem Verzeichnis time01 ablegen, wenn das Script in dem Dokument time01.htm aufgerufen werden soll.
 
Danke dir aber wenn ich dann die js datei aufrufe bekomme ich eine Fehlermeldung danke dir für deine Mühe. ich probiere den obenen Script noch mal in Dreamweaver aber da ich es anbieten möchte und viele Frontpage haben grins muss ich mir was einfallen lassen grins.

Liebe Grüße Grafikzauber
 

Neue Beiträge

Zurück