20/11/2002, 01:32
|
| | | Fecha de Ingreso: enero-2002 Ubicación: Cba - Arg
Mensajes: 188
Antigüedad: 23 años Puntos: 1 | |
Hola, probá así, te modifique el script un poquito:
<script language="JavaScript">
<!--
function resolucion(){
var ancho = screen.width;
var alto = screen.height;
if ((ancho == "640") && (alto == "480")) {
datos.resolucion.value = "640x480";
}else if ((ancho == "800") && (alto == "600")) {
datos.resolucion.value = "800x600";
}else if ((ancho == "1024") && (alto == "768")) {
datos.resolucion.value = "1024x768";
}
}
window.onload = resolucion;
//-->
</script>
El formulario:
<form name="datos" action="" method="get">
<input name="usuario" type="text" id="textfield" size="12" maxlength="30">
<input name="password" type="password" size="12" maxlength="30">
<input type="hidden" name="resolucion">
<input type="submit" name="Submit" value="Enviar" id="Submit">
</form>
Pero si lo que querés es saber la resolucion es más fácil así, con el mismo formulario:
<script language="JavaScript">
<!--
function resolucion(){
var ancho = screen.width;
var alto = screen.height;
resolucionUSR = ancho + "x" + alto;
datos.resolucion.value = resolucionUSR;
}
window.onload = resolucion;
//-->
</script>
Suerte.... |