繁体   English   中英

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

[英]how to add values of checkbox to get the total price

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

我已经尝试了许多方法,但无法获得结果。

这是我的代码。有人可以帮我做我想做的吗

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

试试这个, 演示小提琴

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

要计算已检查输入的值,请使用:checked

尝试一下,它应该可以工作。这是此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);
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM