美肤堂计算器

js代码:

function compute(op){
	// 定义两个变量
	var num1,num2;
	// 获取输入的商品单价
	num1=parseFloat(document.myform.txtNum1.value);
	num2=parseInt(document.myform.txtNum2.value);
	if(op=="9折")
		document.myform.txtResult.value=(num1*num2*0.9).toFixed(2);
	if(op=="8折")
		document.myform.txtResult.value=(num1*num2*0.8).toFixed(2);
	if(op=="7折")
		document.myform.txtResult.value=(num1*num2*0.7).toFixed(2);
    if(op=="6折")
		document.myform.txtResult.value=(num1*num2*0.6).toFixed(2);
	
}

css代码:

table{
    width: 280px;
    margin: 0 auto;
    padding: 5px;
    border-width: 0;
    border: 1px solid balck;
    background-color: #c9e495;
    text-align: center;
}

html代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>美肤堂商品促销计算器</title>
		<link rel="stylesheet" type="text/css" href="css/index.css"/>
		<script src="js/index.js"></script>
	</head>
	<body>
		
		<form method="post" id="myform" name="myform">
			<table>
				<tr>
					<td colspan="4">美肤堂商品促销计算器</td>
				</tr>
				<tr>
					<td>商品单价</td>
					<td colspan="3"><input name="txtNum1" type="text" id="txtNum1"/></td>
				</tr>
				<tr>
					<td>数量</td>
					<td colspan="3"><input name="txtNum2" type="text" id="txtNum2"/></td>
				</tr>
				
				<tr>
					<td><input name="Btn1" type="button" id="Btn1" value="9折" onClick="compute('9折')"/></td>
					<td><input name="Btn2" type="button" id="Btn2" value="8折" onClick="compute('8折')"/></td>
					<td><input name="Btn3" type="button" id="Btn3" value="7折" onClick="compute('7折')"/></td>
					<td><input name="Btn4" type="button" id="Btn4" value="6折" onClick="compute('6折')"/></td>
				</tr>
				
				<tr>
					<td>计算结果</td>
					<td colspan="3"><input name="txtResult" type="text" id="txtResult"></td>
				</tr>
			</table>
		</form>
		
	</body>
</html>

运行效果:

美肤堂计算器

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值