Werte verlinken innerhalb einer datei

FirewolF

Grünschnabel
Hi ich hab da nen kleines Problem. Und zwar ich möchte das der anstatt die 20
"destination.setDate(20);" etwas aus ner zelle aus liehst geht das?
 
Wovon sprichst du bitte? setDate() ist eine Datumsfunktion, ich wüsst nicht, was die mit Zellen zu tun hat.

Werde bitte etwas konkreter, sonst ist dir nicht zu helfen.
 
Ich mein das der die zahl (hier 24) aus ner zelle von ner tabelle aus liest.
PHP:
var destination = new Date(); 
destination.setYear(2004); 
destination.setMonth(12-1);
destination.setDate(24); // <-- DA
destination.setMinutes(0); 
destination.setSeconds(0); 
setTimeout("countDate()", 0); 
function countDate() { 
	var dst = destination; 
	var now = new Date(); 
	var diff = parseInt((dst - now) / 1000); 
	var days = parseInt(diff / (60 * 60 * 24)); 
	diff -= (days * 60 * 60 * 24); 
	var hours = parseInt(diff / (60 * 60)); 
	diff -= (hours * (60 * 60)); 
	var minutes = parseInt(diff / 60); 
	diff -= (minutes * 60); 
	var seconds = parseInt(diff);
	document.getElementById("textfield").value = days + " Tage, " + hours + " Stunden, " + minutes + " Minuten, " + seconds + " Sekunden"; 
	setTimeout("countDate()", 500); 
}

z.b. aus der zelle
HTML:
<table width="75%" border="0">
<tr>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>hier raus</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
</tr>
<tr>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
</tr>
<tr>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
</tr>
</table>
 

Neue Beiträge

Zurück