微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – Onchange使用ajax在表行中追加数据

我想更改select标签中所选选项值的表格.但是我也希望将结果附加到现有的表行中,为此我能够将数据检索到表中但不能在tbody的内部html中追加新行只想知道如何将行追加到ajax响应文本我尝试过这个.

<script>
    function resInvoice(InvoiceVal){
        var xhttp;    
        if (InvoiceVal == "") {
            document.getElementById("InvoiceBody").innerHTML = "";
            return;
        }
        xhttp = new XMLHttpRequest();
        xhttp.onreadystatechange = function() {
            if (xhttp.readyState == 4 && xhttp.status == 200) {
                document.getElementById("InvoiceBody").innerHTML="<tr>"+xhttp.responseText+"</tr>");
            }
        };
        xhttp.open("GET", "GetSelect.PHP?InData="+InvoiceVal, true);
        xhttp.send();
    }

</script>

<tbody id="InvoiceBody">
    <tr id="select">
        <td colspan="2">
            <select class='form-control select2' onchange="resInvoice(this.value)">          
                <?PHP 
                    $fqeyr="SELECT ItemID,LineItemName FROM `per_addnew_lineitem`";
                    $faddnew=MysqLi_query($con,$fqeyr);

                    while($fnrow=MysqLi_fetch_array($faddnew)){
                        $lname=$fnrow['LineItemName'];
                ?>

                <option value="<?PHP echo $fnrow['ItemID'] ;?>">
                    <?PHP echo $lname ; ?>
                </option>
                <?PHP } ?>         
            </select>
        </td>
        <td>
            <button type="button" class="btn btn-primary btn-xs" style="margin-top:12px;" data-toggle="modal" data-target="#AddNewLine">+ Add New Line Item </button>
        </td>
    </tr>
</tbody>

并在IN GetSelect.PHP

if(isset($_GET['InData'])){
    $InData=$_GET['InData'];
    $InDataRes=MysqLi_query($con,"SELECT * FROM `per_addnew_lineitem` where ItemID='$InData'");
    while($InvoiceD=MysqLi_fetch_array($InDataRes)){
        echo '<td>'.$InvoiceD['LineItemName'].'</td>' ;
        echo '<td>'.$InvoiceD['Description'].'</td>' ;
        echo '<td>'.$InvoiceD['Calculation'].'</td>' ;
    }
}

解决方法:

试试这个

var new_row = "<tr>" + xhttp.responseText + "</tr>";
$("#InvoiceBody").append(new_row);

代替

 document.getElementById("InvoiceBody").innerHTML="<tr>"+xhttp.responseText+"</tr>"); 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐