Html
Enviado por Antony Huancas • 19 de Noviembre de 2021 • Práctica o problema • 315 Palabras (2 Páginas) • 82 Visitas
<!doctype html>
<html><head>
<meta charset="utf-8">
<title>Documento sin título</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
function calcular()
{
var subtotal;
var nombre;
var igv;
var total;
pt = (document.getElementById("txtproducto").value);
pc = parseFloat(document.getElementById("txtprecio").value);
c = parseFloat(document.getElementById("txtcantidad").value);
nombre = pt;
document.getElementById("txtrespuesta").value = "Nombre del Producto es: "+ nombre;
$("#exito").delay(500).fadeIn("slow");
subtotal = pc * c;
document.getElementById("txtsubtotal").value = "El subtotal es: "+ subtotal;
$("#exito").delay(500).fadeIn("slow");
igv = subtotal * 0.18;
document.getElementById("txtigv").value = "El igv es: "+ igv;
$("#exito").delay(500).fadeIn("slow");
total = subtotal + igv;
document.getElementById("txttotal").value = "El total es: "+ total;
$("#exito").delay(500).fadeIn("slow");
return;
}
function nuevo(){
$("#exito").fadeOut("slow");
$("#fracaso").fadeOut("slow");
document.getElementById("txtproducto").value="";
document.getElementById("txtcantidad").value="";
document.getElementById("txtprecio").value="";
}
</script>
<style type="text/css">
#formulario #form1 h1 u {
font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Arial Black, sans-serif;
}
</style>
</head>
<body>
<style>
body {
background-image: url("imagenes/tienda.jpg");
background-repeat: no-repeat;
background-size: 100%;
}
</style>
<div id="formulario">
<form id="form1" name="form1" method="post">
<h1 style="color: #5FE02A" align="center">Tienda
...