单击相应的单选按钮时获取html表行信息

时间:2017-02-24 16:01:29

标签: javascript html

我正在编写一个网页,我希望它做的任务之一就是在用户点击相应行的单选按钮时,在文本框中显示表格中提供的信息(其数据由MySQL中的查询确定)。 我设法让它工作,但它只能工作一次。我怎样才能让它每次都有效?

非常感谢你!

HTML和PHP代码:

<table style="width=100%;border: 1px solid black" id="tablaListado" cellspacing="10">
        <tr style="border-bottom-style:solid;border-width:1px;border-color:#1e1e1e;text-align: -webkit-center;background:#22CECE;font-size: 16px;">
            <th style = "border: 1px solid black">Elegir</th>
            <th style = "border: 1px solid black">SKU</th>
            <th style = "border: 1px solid black">ISBN 13</th>
            <th style = "border: 1px solid black">Titulo</th>
            <th style = "border: 1px solid black">Proveedor</th>
            <th style = "border: 1px solid black">Costo</th>
            <th style = "border: 1px solid black">Precio</th>
        </tr>
        <?php 
            $result = faltanteCostos();

            if(mysql_num_rows($result) >0){
                while($registroDD = mysql_fetch_assoc($result)){

                        echo "<tr style='border: 1px solid black'>
                            <td style='border: 1px solid black'>
                                <input type='radio' id='regular' name='optradio' onclick='llenarInfo()'>
                            </td>
                            <td class='sku' style='border: 1px solid black'>".$registroDD['art_SKU']."</td>
                            <td class='isbn13' style='border: 1px solid black'>".$registroDD['art_N13']."</td>
                            <td class='titulo' style='border: 1px solid black'>".$registroDD['art_titulo']."</td>
                            <td class='prov' style='border: 1px solid black'>".$registroDD['art_id_proveedor']."</td>
                            <td class='costo' style='border: 1px solid black'>".$registroDD['art_cost']."</td>
                            <td class='precio' style='border: 1px solid black'>".$registroDD['art_precio']."</td>
                        </tr>";

                }
            }
        ?>
    </table>

JS:

function llenarInfo(){
        var d = document.getElementsByName('optradio');

        for (var i = 0; i < d.length; i++) {
            if (d[i].checked) {          

                document.getElementById("insku").value = $("td input[name='optradio']:checked").parents().find('.sku').html();
                document.getElementById("inisbn").value = $("td input[name='optradio']:checked").parents().find('.isbn13').html();
                document.getElementById("intit").value = $("td input[name='optradio']:checked").parents().find('.titulo').html();
                document.getElementById("inprov").value = $("td input[name='optradio']:checked").parents().find('.prov').html();
                document.getElementById("incost").value = $("td input[name='optradio']:checked").parents().find('.costo').html();
                document.getElementById("inprecio").value = $("td input[name='optradio']:checked").parents().find('.precio').html();
                console.log("yes!");
            }
        }
    }

编辑:我将添加我的问题的图片

enter image description here

在上图中,我点击了第一个单选按钮,相应的信息在底部正确显示。

enter image description here

然而,在这一个中,当我点击第二个按钮并且在信息没有改变之前我点击了第一个按钮。

1 个答案:

答案 0 :(得分:1)

为什么不做这样的事情......

$('input[type="radio"]').on('click', function(){

    var value1 = $(this).parent().parent().find('.classYouWant').text();
    var value2 = $(this).parent().parent().find('.classYouWant').text();

    $('#idOfInputBox1').val(value1);
    $('#idOfInputBox2').val(value2);

});

顺便说一句,你不想要从你的行中.html(),你只需要.text()。我也不会使用.parents(),因为你只需要上升两个级别,所以只需要链接2个父级。