Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/05/2003, 04:07
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola, Axo.

No estoy seguro de haber entendido bien tu duda, pero ¿podría ser algo así?
Código PHP:
<html>
<
head>
<
script>
var 
total=0;
function 
sumar(chk,valor) {
    if (
chk.checked)
    
total+=valor
    
alert(total)}
</script>
</head>
<body>
<input type="checkbox" onClick="sumar(this,3)">
</body>
</html> 
Saludos,