Wert in einen Layer ausgeben
Lars
- javascript
0 hartmann
Hallo
Wie kann ich aus folgenden Script (Mauspositionermittlung in Statusbar)
den Wert in eine Layer laden und nicht in der Statusbar.
Vielen Dank
<html>
<head>
<title>Maus-Position ermitteln</title>
<script>
if(window.Event)
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=show_maus;
function show_maus(e)
{
if(window.Event)
window.status="X="+e.pageX+", "+"Y="+e.pageY;
else
window.status="X="+event.clientX+", "+"Y="+event.clientY;
}
</script>
</head>
<body>
Die aktuelle Mausposition steht in der Statuszeile...
</body>
</html>
hallo,
folgendes sollte im Netscape4/6 und im IE ab 4.0 funktionieren:
<html>
<head>
<title>Maus-Position ermitteln</title>
<script>
if(window.Event)
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=show_maus;
function show_maus(e)
{
if(window.Event)
var string="X="+e.pageX+", "+"Y="+e.pageY;
else
var string="X="+event.clientX+", "+"Y="+event.clientY;
if(document.getElementById){
document.getElementById("abc").innerHTML = string;
}else{
document.abc.document.open();
document.abc.document.write(string);
document.abc.document.close();
}
}
</script>
</head>
<body>
<div id="abc" style="position:absolute;">
</div>
</body>
</html>
gruß
hartmann