簡體   English   中英

單擊表格行上的按鈕,然后在模態窗口中顯示值

[英]Click button on row of the table and show values in modal-window

我用引導程序和引導程序表創建了一個網站。 要將元素添加到boostrap表中,我使用php。 問題是,當我單擊編輯按鈕時,在模態窗口中沒有顯示我單擊的行的值。

我認為問題出在jquery代碼中。 我使用瀏覽器的Debbug控制台進行了不同的測試,並且我發現單擊該按鈕不會獲​​得該行的值。 我在控制台中嘗試了其他信息,並且顯示正確,例如: console.log($(this).text());

請您能幫我了解問題出在哪里嗎?

碼:

      <div class="row">
        <?php  
                $conn = Conectarse("localhost", "5432", "addcom", "dbadmin", "Tibidabo");  
                //query
                $query = "SELECT * FROM produccion.ma_producto ORDER BY codigo ASC";
                $result = pg_query($conn, $query);  
                //se despliega el resultado  
                ?><table class='table-bordered' id='tableprod'
                               data-toggle='table'
                               data-toolbar='#toolbar'
                               data-show-refresh='true'
                               data-show-toggle='true'
                               data-sort-name='name'
                               data-sort-order='desc'
                               data-show-columns='true'
                               data-pagination='true'
                               data-search='true'>

                    <thead class='thead-inverse'>
                        <tr>  
                            <th data-field='seleccion' data-switchable='false' data-checkbox='true'></th>
                            <th data-field='estado' data-switchable='false'></th>
                            <th data-field='edicion' data-sortable='true' data-visible='false'>EDICIÓ</th>  
                            <th data-field='pagina' data-sortable='true'>PÀGINA</th>  
                            <th data-field='codigo' data-sortable='true' data-switchable='false'>CODI</th>  
                            <th data-field='image' data-switchable='false'>IMATGE</th>
                            <th data-field='descripcion-cat' data-sortable='true'>DESCRIPCIÓ CAT</th> 
                            <th data-field='descripcion-esp' data-sortable='true'>DESCRIPCIÓ ESP</th> 
                            <th data-field='marca' data-sortable='true'>MARCA</th> 
                            <th data-field='gramaje' data-sortable='true'>GRAMATJE</th>
                            <th data-field='destacado' data-sortable='true' data-visible='false'>DESTACAT</th> 
                            <th data-field='pvp-cat' data-sortable='true'>PVP-CAT</th> 
                            <th data-field='pvp-lev' data-sortable='true'>PVP-LEV</th> 
                            <th data-field='pvp-and' data-sortable='true'>PVP-AND</th>
                            <th data-field='pvp-cen' data-sortable='true'>PVP-CEN</th>
                            <th data-field='pvp-nor' data-sortable='true'>PVP-NOR</th>
                            <th data-field='pvp-vas' data-sortable='true'>PVP-VAS</th>
                            <th data-field='pvp-spar' data-sortable='true'>PVP-SPAR</th>
                            <th data-field='user' data-sortable='true' data-visible='false'>USER</th>
                            <th data-field='fecha-mod' data-sortable='true' data-visible='false'>FECHA-MOD</th>
                            <th data-field='edit' data-sortable='false' data-switchable='false'>EDIT</th>
                        </tr>
                    </thead>
                    <tbody>
                <?php while ($row = pg_fetch_row($result)){ ?>  
                        <tr id='<?php echo $row[0]; ?>'>
                            <td></td>
                            <?php echo $estado = EstadoIcon($row[2]); ?>
                            <td name='edicion'><?php echo $row[1] ?></td>
                            <td name='pagina'><?php echo $row[3] ?></td> 
                            <td name='codigo'><?php echo $row[0] ?></td>  
                            <?php echo $imatge = AddImage($row[9]); ?> 
                            <td name='descripcion-cat'><?php echo $row[5] ?></td>
                            <td name='descripcion-esp'><?php echo $row[4] ?></td>
                            <td name='marca'><?php echo $row[6] ?></td> 
                            <td name='gramaje'><?php echo $row[7] ?></td>
                            <td name='destacado'><?php echo $row[8] ?></td> 
                            <td name='pvp-cat'><?php echo $row[10] ?></td>
                            <td name='pvp-lev'><?php echo $row[11] ?></td>  
                            <td name='pvp-and'><?php echo $row[12] ?></td>  
                            <td name='pvp-cen'><?php echo $row[13] ?></td> 
                            <td name='pvp-nor'><?php echo $row[14] ?></td>  
                            <td name='pvp-vas'><?php echo $row[15] ?></td> 
                            <td name='pvp-spar'><?php echo $row[16] ?></td>
                            <td name='user'><?php echo $row[17] ?></td>
                            <td name='fecha-mod'><?php echo $row[18] ?></td>
                            <td><button class='btn btn-xs edit btn-edit' data-toggle='modal' data-target='#edit'><i class="material-icons" style="font-size: 20px">edit</i> </button></td>
                        </tr>  
                <?php }  ?>
                    </tbody>
                </table> 


<script>

var $table = $('#tableprod');

        $('#tableprod').click(function() {

            var $row = $(this).closest("tr"),

            $tdata = $row.find("td");

            console.log($(this).text());

            $.each($tdata, function(index, value) {
                alert ('Entró');
                console.log($(this).text()); 
                $( "input:eq(" + index + ")").val($(this).text());
            });
        });     

        </script>

提前致謝!

click事件應與按鈕而不是表相關聯:

$('.btn-edit').click(function() {

            var $row = $(this).closest("tr"),

            $tdata = $row.find("td");

            console.log($(this).text());

            $.each($tdata, function(index, value) {
                alert ('Entró');
                console.log($(this).text()); 
                $( "input:eq(" + index + ")").val($(this).text());
            });
            $('#edit').modal('show')
        }); 

您的編輯按鈕觸發了引導模式:您可以從編輯按鈕中刪除data-toggle='modal' ,然后在點擊事件$('#edit').modal('show')中以編程方式觸發模式。 或使用模態事件show.bs.modal如下

$('#edit').on('show.bs.modal', function (event) {
  var $button = $(event.relatedTarget) // Button that triggered the modal
  var $row = $button.closest("tr"),

        $tdata = $row.find("td");

        console.log($button.text());

        $.each($tdata, function(index, value) {
            alert ('Entró');
            console.log($(this).text()); 
            $( "input:eq(" + index + ")").val($(this).text());
        });
 });

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM