2013-04-29 90 views
0

我想通过jQuery和AJAX将文本框的值(发票号)发送到PHP文件。从PHP文件中,我返回JSON编码数据。我想在下面的文本框(总金额,余额)和选择框(支付模式,付款状态)中显示从数据库中提取的值。通过jQuery和PHP加载JSON数据

我没有得到我希望的输出。我哪里错了?

HTML:

<form name="inv_payment" method="post" action="" style="margin:0px;width:400px;"> 
    <fieldset> 
     <legend>Payment details</legend> 
     <label for=inv_num>Invoice Number</label> 
      <input id=inv_num name=inv_num type=number placeholder="12345" required autofocus > 
      <input type=button name="get_details" id="get_details" value="Get Details" > 
      <label for=tot_amt>Total Amount</label> 
      <input id=tot_amt name=tot_amt type=text placeholder="12345" disabled > <br/> 
      <label for=pay_up>Pay Up </label> 
      <input id=pay_up name=pay_up type=text placeholder="12345" required ><br/> 
      <label for=bal_amt>Balance Amount&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label> 
      <input id=bal_amt name=bal_amt type=text placeholder="12345" disabled > <br/> 
       <label id="paymt_mode"><strong>Payment Mode</strong></label> 
          <select name="pay_mode" style="width: 130px"> 
          <option selected="selected">Cash</option> 
          <option>Cheque</option> 
          </select><br/> 
       <label id="paymt_status"><strong>Payment Status</strong> </label> 
          <select name="pay_status" style="width: 130px"> 
          <option selected="selected">Pending</option> 
          <option>Completed</option> 
          </select><br/> 
      <input type="submit" value="Payment" name="pay_btn"> 
     </fieldset> 
</form> 

的jQuery:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> 
    <script type="text/javascript"> 

    $(document).ready(function() { 


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

     //To pass the invoice number and fetch related details 
     $.getJSON("get_invpay_details.php", {id: $('#inv_num').val()}, function(data){ 
      $('#tot_amt').val(data['Total_Amount']); 
      $('#bal_amt').val(data['Balance_Amount']); 
      $('#pay_mode').val(data['Payment_Type']); 
         $('#pay_status').val(data['Payment_Status']); 
     }); 
       }); 
</script> 

PHP:

<?php 
     include('includes/dbfunctions.php'); 
     include('includes/db.php'); 
     if(isset($_GET['id'])) 
    { 
       $tmp = $_GET['id']; 
     $sql = mysql_query("select Total_Amount,Balance_Amount,Payment_Type,Payment_Status from invoice where InvoiceNum='$tmp'"); 
     if(mysql_num_rows($sql)) 
     { 
      $data = mysql_fetch_array($sql); 
      echo json_encode($data); 
     } 
    } 

?> 
+0

如果它不是你希望的输出,你到底是什么?另外,考虑转移到mysqli或PDO,你的查询看起来很奇怪! – adeneo 2013-04-29 06:38:08

+0

告诉我们你的json响应...检查你的控制台.. – bipen 2013-04-29 06:39:50

+0

你可以显示你的'json_encode($ data)'内容.. – Ranjith 2013-04-29 06:41:20

回答

0

您的JSON响应值填充object.data是这样的。

$('#tot_amt').val(data.Total_Amount); 
$('#bal_amt').val(data.Balance_Amount); 
$('#pay_mode').val(data.Payment_Type); 
$('#pay_status').val(data.Payment_Status); 

这里dataobject不是array

+0

感谢ranjith的回复。我尝试了你的代码,但仍然没有工作。 – Rams 2013-04-29 07:05:16

0

我检查了我的查询,它在mysql编辑器中给了我正确的输出。

我所能看到的是..你有你的问题一个错字...

失踪});为document.ready..which可能会打破你的脚本..(这应该有错误的控制台虽然..)..无论如何要检查的东西..

$(document).ready(function() { 


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

    //To pass the invoice number and fetch related details 
     $.getJSON("get_invpay_details.php", {id: $('#inv_num').val()}, function(data){ 
      $('#tot_amt').val(data['Total_Amount']); 
      $('#bal_amt').val(data['Balance_Amount']); 
      $('#pay_mode').val(data['Payment_Type']); 
      $('#pay_status').val(data['Payment_Status']); 
     }); 
    }); 
    }); 
    //^^--here 
+0

谢谢bipen。我忘记关闭$(document).ready(function(){with});现在值显示在我的文本框(总金额)中,但我的选择框(付款方式和付款状态没有反映出来)。 – Rams 2013-04-29 07:19:14

+0

这应该工作......确保你在你的选择框中有'data ['Payment_Type']'选项 – bipen 2013-04-29 07:24:17