根据搜索条件{j 44}在ajax POST后刷新表格

时间:2016-04-21 07:54:03

标签: javascript php html ajax

所有

我有一个模态,其中包含一个表,其中包含来自PHP查询的结果,使用PHP包含,问题是当页面首次打开时加载模态,我似乎无法在以后使用AJAX帖子刷新该表基于文本框变量。

这是我的代码

HTML     

<div class="modal-content">
    <div class="modal-header">
      <span class="close">x</span>
    </div>

    <div class="modal-body">    
        <div id="divSearchResultsTable">
            <table  class="tblSearchResults" id="tblSearchResults">     
                <thead> 
                <tr>
                    <th>ID</th>
                    <th>Name</th>
                    <th>Home</th>
                    <th>Mobile</th> 
                    <th>City</th>
                    <th>Country</th>
                    <th>Company</th>
                </tr>
                </thead>
                <tbody>
                    <?php
                        include("sql_search.php");
                    ?>
                <tbody>
            </table>
        </div>
        <div id="divSearchResultsButtons">
            <input type="button" class="btnOpen" id="btnOpen" name="btnOpen" value="Open" disabled="true"/>
            &nbsp
            <input type="button" class="btnClose" id="btnClose" name="btnClose" value="Close"/>
        </div>
</div>
</div>

的JavaScript

$(function(){
    $('#btnSearch').click(function(e){
        var modal = document.getElementById('modal');
        var value = $("#txtSearch").val();
                $.ajax({
                    type : "POST",
                    url : "sql_search.php",                 
                    data : {value:value},
                    success : function(output) {
                    alert(output);
                        modal.style.display = 'block';
                        modal.focus();
                    }
                });
    });
});

PHP(sql_search.php)

$value = (isset($_POST['value']) ? $_POST['value'] : null);

if ($value == null){
$sql = "SELECT * FROM helpdesk";
}

else{
$sql = "SELECT * FROM helpdesk WHERE ID = $value";
}

$result = mysqli_query( $conn, $sql);

while( $row = mysqli_fetch_array($result))
{   
    echo '<tr>';
    echo '<td>'.$row['ID'].'</td>' . '<td>'.date("d/m/Y g:i:s A", strtotime($row['DateCreated'])).'</td>' . '<td>'.$row['Priority'].'</td>' . '<td>'.$row['Company'].'</td>' . '<td>'.$row['Name'].'</td>' . '<td>'.$row['Subject'].'</td>' . '<td>'.$row['Name'].'</td>';
    echo '</tr>';
}

我得到的结果是返回的每个数据库项。我已经在我的AJAX成功中使用alert(output)来确认变量实际上已被传递,所以我想我现在只需要弄清楚如何让表更新。

有什么建议吗?

由于

1 个答案:

答案 0 :(得分:1)

不要将您的PHP文件包含在html中,而是将id分配给您想要输出的元素。然后在Javacsript中,使用AJAX调用返回的数据填充内容。

<div class="modal-content">
    <div class="modal-header">
      <span class="close">x</span>
    </div>

    <div class="modal-body">    
        <div id="divSearchResultsTable">
            <table  class="tblSearchResults" id="tblSearchResults">     
                <thead> 
                <tr>
                    <th>ID</th>
                    <th>Name</th>
                    <th>Home</th>
                    <th>Mobile</th> 
                    <th>City</th>
                    <th>Country</th>
                    <th>Company</th>
                </tr>
                </thead>
                <tbody id="modalContent">
                    <!--  note, no content and tbody has an ID -->
                <tbody>
            </table>
        </div>
        <div id="divSearchResultsButtons">
            <input type="button" class="btnOpen" id="btnOpen" name="btnOpen" value="Open" disabled="true"/>
            &nbsp
            <input type="button" class="btnClose" id="btnClose" name="btnClose" value="Close"/>
        </div>
</div>
</div>

和javascript代码:

$(function(){
    $('#btnSearch').click(function(e){
        var modal = document.getElementById('modal');
        var value = $("#txtSearch").val();
                $.ajax({
                    type : "POST",
                    url : "sql_search.php",                 
                    data : {value:value},
                    success : function(output) {
                    alert(output);
                        $('#modalContent').html(output);  // <------
                        modal.style.display = 'block';
                        modal.focus();
                    }
                });
    });
});
顺便说一下,你的PHP代码是不安全的,因为它直接在SQL查询中使用它的参数而没有验证或类型转换(SQL注入)并从数据库输出数据而不转义html(存储的HTML / Javascript注入)。考虑使用带参数的PDO - http://php.net/manual/en/pdostatement.bindparam.php并将数据库输出值包装到htmlspecialchars()调用