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

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

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度