在php中获取自动选中的复选框和下一个输入文本值

时间:2015-03-12 10:39:42

标签: php checkbox

我希望在选中时自动获取复选框值和下一个输入文本值。请不要告诉我“给名字1,名字2等名称'因为我想从我的数据库中获取数据。

  <?php
    if(isset($_GET['submit'])){

    $amount = $_GET['amount'];
    $checked= $_GET['check'];

    echo "You selected ".$amount.". of ".$checked."";
    }
    ?>

    <form>


    <input type="checkbox" value="Coke" name="check[]">Coke<input type="number" name="amount[]"><br>
    <input type="checkbox" value="Fanta" name="check[]">Fanta<input type="number" name="amount[]"><br>
    <input type="checkbox" value="Water" name="check[]">Water<input type="text" name="amount[]"><br>

    <input type="submit" value='Verder' name="submit">
    </form>

2 个答案:

答案 0 :(得分:0)

您可以使用jquery执行此操作:

$("input[type=checkbox]" ).on( "click", function(){
    if($(this).is(':checked')){
        var value_of_checkbox = $(this).val();
        var value_of_next_input = $(this).next().val();

        //DO more stuff

    }
});

答案 1 :(得分:0)

希望这会对你有所帮助。你可以通过使用jquery实现这一点。

$(function(){
    $("input[name='check[]']").click(function(){
        var isChecked = $(this).is(":checked");
        if (isChecked) {
            var nextInputvalue = $(this).next(':input[name="amount[]"]').val();
            alert(nextInputvalue); // this will give the text box value
        }
    });
});