05/05/2005, 12:51
|
| | | Fecha de Ingreso: julio-2003
Mensajes: 1.773
Antigüedad: 21 años, 5 meses Puntos: 21 | |
a ver aqui hay unos detalles <select name='producto_id'>
<option value='1'> Ultima hora Nacional - uhna </option>
<option value='2'> Ultima Hora Internacional - uhin </option>
<option value='3'> Horoscopo - horo </option>
<option value='4'> Deportes - depo </option>
</select>
<input name="noticias[]" type=text class="campo" size=15 maxlength="10">
<input type="text" maxlength="3" size="3" name="remLen" disabled>
y si deseas limitar un numero de caracteres usa mejor esto
<script language="JavaScript">
function maximaLongitud(texto,maxlong) {
var tecla, in_value, out_value;
if (texto.value.length > maxlong) {
in_value = texto.value;
out_value = in_value.substring(0,maxlong);
texto.value = out_value;
return false;
}
return true;
}
</script>
<textarea name="nombre_textarea" cols="50"
rows="5" onKeyUp="return maximaLongitud(this,254)">
__________________ gerardo |