Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/01/2009, 20:49
matute2004
 
Fecha de Ingreso: enero-2009
Mensajes: 13
Antigüedad: 16 años
Puntos: 0
Respuesta: Alguno que me pueda ayudar con formulario suma

bueno, aca te dejo un ejemplo de lo que estoy buscando

Código PHP:
<html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
script>
var 
total=0;
function 
sumar(valor) {
total += valor
document.formulario.total.value=total;
}

function 
restar(valor) {
total-=valor
document.formulario.total.value=total;
}
</script>
<title>Documento sin t&iacute;tulo</title>
</head>

<body>
<table width="647" border="1">
  <tr>
    <td width="177">Menu</td>
    <td width="78">Por kilo </td>
    <td width="117">por porcion </td>
    <td width="216">Cantidad</td>
  </tr>
  <tr>
    <td height="25">Milanesas</td>
    <td><form id="form1" name="form1" method="post" action="">
      <label>
        <input name="por kilo" type="checkbox" onClick="onClick=&quot;if (this.checked) sumar(32); else restar(32)&quot;" value="checkbox" />
        por kilo</label>
    </form>    </td>
    <td><form id="form2" name="form2" method="post" action="">
      <label>
        <input name="checkbox2" type="checkbox" onClick="onClick=&quot;if (this.checked) sumar(16); else restar(16)&quot;" value="por porcion" />
        por porcion</label>
    </form>    </td>
    <td><form id="form3" name="form3" method="post" action="">
      <label>cantidad
        <input type="text" name="textfield" />
        </label>
    </form>    </td>
  </tr>
  <tr>
    <td height="25">&nbsp;</td>
    <td>&nbsp;</td>
    <td>Total</td>
    <td><form id="form4" name="form4" method="post" action="">
      <label>total
<input type=text name=total value=0>
        </label>
    </form>
    </td>
  </tr>
</table>
</body>
</html> 
me falta hacer andar el <input type="text" name="textfield" /> que es el de cantidad para que puedan poner la cantidad de porciones o de kilos que quieres me comprendes? y despues el toral se muestra en <input type=text name=total value=0>

gracias.