我正在创建一个包含一些服务及其价格的页面。 因此,当用户通过选中旁边的复选框选择服务时,应将价格添加到总价中。此外,如果他取消选中该复选框,则会从总数中扣除该服务的价格。
我尝试了很多方法,但是我无法得到结果。
这是我的代码..任何人都可以帮我做我想做的事情
<html>
<head>
<title> new bill</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<?php
include 'config.php';
include 'searchbill.php';
$query = "SELECT * FROM service";
$result = mysqli_query($con, $query);
if ($result){
?>
<center> <font size="5" face="WildWest" color="#4EE2EC"> Services</font></center>
<table align="center" class="imagetable" accept-charset="utf-8">
<tr style="background-color: #80E6CC;color:white;" aligh="center">
<th>number</th>
<th>service name</th>
<th>employee</th>
<th>price</th>
<th>check</th>
</tr>
<?php
$id = 1;
while ($row = mysqli_fetch_array($result)){
echo "<tr><td align='center'>" . $id++;
echo "<td align='center'>" . $row["sname"] . "</td>";
echo "<td align='center'>";
$emb = "SELECT * FROM employee";
$resultemb = mysqli_query ($con, $emb);
if($resultemb){?>
<select name="ename" STYLE="margin-right: 83px; alignment-adjust: middle; font-family: Verdana; font-weight: bold; font-size: 12px; color: #379EA5; " >
<?php while ($row1 = mysqli_fetch_array($resultemb)){
for($i=1; $i<= count($row1["ename"]);$i++){
$select = $row1["ename"];
echo $select;
echo "<br/>";
echo "<option value='$select'>".$select."</option>";
}
} ?>
</select>
<?php
}
echo "<td align='center'>" . $row["sprice"] . "</td>";
echo "<td align='center'>";?>
<input type="checkbox" name="serprice" value="<?php $row['sprice']; ?>">
<?php
echo "</td></tr>";
?>
<?php
}
}
?>
</body>
</html>
答案 0 :(得分:1)
试试这个 Demo Fiddle
$('input[type="checkbox"]').change(function(){
var totalprice = 0;
$('input[type="checkbox"]:checked').each(function(){
totalprice= totalprice + parseInt($(this).val());
});
$('#price').val(totalprice);
});
要计算已检查输入的值,请使用 :checked 。
答案 1 :(得分:0)
尝试这应该工作这是这个http://jsfiddle.net/sushilbharwani/QCndj/
的jsfiddle
$('input[type=checkbox]').click(function(){
total = 0;
$('input[type=checkbox]:checked').each(function(){
total = total + parseInt($(this).val());
});
alert(total);
});