drjmrg8766 2016-07-06 03:03
浏览 145
已采纳

PHP使用id属性获取表单数据

I'm making a form with checkboxes and radiobuttons I use the value as price, which I calculate with a script so I get the total price of the selected checkboxes and radiobuttons.

<script>
function calcscore() {
    score = 0;
    $(".calc:checked").each(function () {
        score += Number($(this).val());
    });
    $("#price").text(score.toFixed(2));
    $("#sum").val(score)
}
$().ready(function () {
    $(".calc").change(function () {
        calcscore()
    });
});
</script>

<input type="radio" id="1" value="40" class= "calc" name = "780143050"> Gezichtsbehandeling (incl.)<br>
<input type="radio" id="2" value="40" class = "calc" name = "780143050"> Massage<br>
<input type="radio" id="3" value="75" class = "calc" name = "780143050"> beide 
<span id="output"></span><input type="hidden" name="sum" id="sum" value="0">
                <p>Totaal extra's : €  <span id="price">0</span>

I have the following PHP

test.php

<?php
   echo("keuze : " . $_POST['780143050'] . "<br />
");
?>

I in my php script the value and the ID. How can I echo the ID of the selected radiobutton?

  • 写回答

2条回答 默认 最新

  • douquqiang1513 2016-07-06 04:10
    关注

    There are 2 ways to do this:

    1. change the value of value to the value of the id
    2. add the value of the id to the value

    html:

    <input type="radio" id="2" value="40|2" class = "calc" name = "780143050"> Massage<br>
    

    js:

    <script>
    function calcscore() {
        score = 0;
        $(".calc:checked").each(function () {
            score += Number($(this).val().split('|')[0]);
        });
        $("#price").text(score.toFixed(2));
        $("#sum").val(score)
    }
    $().ready(function () {
        $(".calc").change(function () {
            calcscore()
        });
    });
    

    php

    <?php
       echo("keuze : " . split('|',$_POST['780143050'])[1] . "<br />
    ");
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!
  • ¥15 怎样解决power bi 中设置管理聚合,详细信息表和详细信息列显示灰色,而不能选择相应的内容呢?
  • ¥15 QTOF MSE数据分析