从HTML表获取onclick值以输入表单JavaScript

时间:2018-09-25 12:34:06

标签: javascript php ajax html5

我有一个HTML表,该表每1秒钟通过AJAX更新一次。 AJAX从外部PHP文件获取数据并回显它。这是HTML表格:

<div style='float: left;'>
<br><br>
<p style="padding-left:16px; font-size: 20px;">Amount(<?php echo $market; ?>) | Price(<?php echo $bm; ?>) &nbsp | Total(<?php echo $bm; ?>)</p>
<div class="panel-hello scrollbar" id="style-11">
    <div class="data-table">
        <table class="table table-hello table-bordered table-hover force-overflow" id="btcaddresses">
            <tbody style="border: 1px solid green; height: 300px; overflow-y: scroll;">

            </tbody>
        </table>
    </div>
</div>
</div>

现在我有一个带有三个输入的表单。 html表提供具有3列的行。形式如下:

  <form name="yourform" method="post" action="btccpa.php" style="float:right;">
    <div id="log_err">
        <strong><?php if(isset($eroor)) { echo $eroor; } ?><?php if($au == 1) { echo 'Please log in to trade.';} ?></strong> 
    </div>  
    <p>
        <label style="float: left;">Price:</label>
        <input class="input101" style="float: left;" type="text" name="uprice" id="box3" oninput="calculate()">
        <label style="float: right;">: <?php echo $market; ?></label>
        <input class="input101" style="float: right;" type="text" name="uam" id="box4" oninput="calculate()"><br>
        <input class="input101" style="float: right;" type="text" name="utam" id="resul"><br>
        <label style="padding: 10px;">Total <?php echo $bm; ?>:</label>
        <td rowspan="2">
            <input type="hidden" name="yourform" value="1">
            <br><br>
            <span class="orderbutton" type="submit" id="ordersell" onclick="yourform.submit()">SELL</span>
        </td>
    </p>
</form>

我希望html表中的值在单击时传递给表单。这是正在使用的AJAX:

    function loadXMLD()
 {
 var xmlhttp;
 if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
 }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
 xmlhttp.onreadystatechange=function()
 {
 if (xmlhttp.readyState==4 && xmlhttp.status==200)
  {
  document.getElementById("btcaddresses").innerHTML=xmlhttp.responseText; // your div
  }
}
  xmlhttp.open("GET","get/sellbtccpa.php",true); //your php file
 xmlhttp.send();
}
window.setInterval(function(){
 loadXMLD();
 }, 1000);

1 个答案:

答案 0 :(得分:-1)

        var table = document.getElementById("btcaddresses");
   var j;
    if (table != null) {
        for (var i = 0; i < table.rows.length; i++) {
            for (j = 0; j < table.rows[i].cells.length; j++)

                table.rows[i].cells[j].onclick = function () {
                  var rownumber;
                  rownumber = $(this).closest("tr").index();
                  document.getElementById("box3").value= table.rows[rownumber].cells[0].innerHTML;
                   document.getElementById("box4").value= table.rows[rownumber].cells[1].innerHTML;
                   document.getElementById("resul").value= table.rows[rownumber].cells[2].innerHTML;


}}}

尝试一下。 box3,box4,resul是您的输入ID。您需要JQuery btw。