Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: #!drvy en 8 Noviembre 2015, 20:20 PM
Eing?
Si estas visualizando un PDF, no puedes evitar su descarga. No puedes evitar la descarga de nada que el cliente necesite descargar y leer.
Saludos
<html>
<head>
<title>form</title>
</head>
<body>
<table>
<thead>
<tr>
<th>nombre:</th>
<th>cantidad:</th>
<th>precio:</th>
</tr>
<tr>
<th><input type="text" id="name" placeholder="name"/></th>
<th><input type="text" id="quantity" placeholder="quantity"/></th>
<th><input type="text" id="price" placeholder="price"/></th>
<th><input type="button" id="btn" value="add" onClick="geshiro()"/></th>
</tr>
</thead>
<tbody id="data_table">
</tbody>
</table>
<script type="text/javascript">
var geshiro = function(){
var data = {
name: document.getElementById('name').value,
quantity: document.getElementById('quantity').value,
price: document.getElementById('price').value
};
document.getElementById("data_table").innerHTML += "<tr><td>"+data['name']+"</td><td>"+data['quantity']+"</td><td>"+data['price']+"</td></tr>";
}
</script>
</body>
</html>