我有一个jsp表单,其中我接受用户的产品数量和产品率以及当我点击Calculate按钮时我想在文本框中显示的乘法。我如何使用jsp servlet实现这一目标。我尝试使用javascript但它不起作用。
你能告诉我什么吗?
<script language="javascript" type="text/javascript">
function NetAmount()
{
//alert("Iam in java script");
var pquantity= document.getElementById("prodquantity").value; // document.f11.prodquntity.value;
var prate = document.getElementById("prodrate").value; //document.f11.prodrate.value;
var neta = parseInt(pquantity) * parseDouble(prate);
document.getElementById("netamount").value = neta;
}
</script>