Javascript 如何添加复选框的值以获取总价

Javascript 如何添加复选框的值以获取总价,javascript,php,jquery,html,Javascript,Php,Jquery,Html,我正在创建一个包含一些服务及其价格的页面。 因此,当用户通过选中旁边的复选框来选择服务时,价格应添加到总价中。此外,如果他勾选了复选框,则该服务的价格将从总额中减去 我试过很多方法,但都没有结果 这是我的密码。。有人能帮我做我想做的吗 <html> <head> <title> new bill</title> <link rel="stylesheet" href="//code.jquery.com

我正在创建一个包含一些服务及其价格的页面。 因此,当用户通过选中旁边的复选框来选择服务时,价格应添加到总价中。此外,如果他勾选了复选框,则该服务的价格将从总额中减去

我试过很多方法,但都没有结果

这是我的密码。。有人能帮我做我想做的吗

<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>

新法案
服务
数
服务名称
雇员
价格
检查

试试这个,它应该可以在这里使用JSFIDLE

试试这个,

$('input[type="checkbox"]').change(function(){
    var totalprice = 0;
    $('input[type="checkbox"]:checked').each(function(){
        totalprice= totalprice + parseInt($(this).val());
    });
    $('#price').val(totalprice);
});

要计算选中输入的值,请使用

您在声明总计时不使用var关键字,因此将在全局范围上创建变量。请验证
$('input[type="checkbox"]').change(function(){
    var totalprice = 0;
    $('input[type="checkbox"]:checked').each(function(){
        totalprice= totalprice + parseInt($(this).val());
    });
    $('#price').val(totalprice);
});