0

我有一个表单,我想div通过 AJAX 显示响应。这是来自 的表格图像funds_transfer.php

在此处输入图像描述

我用手册测试它method=post并用表单提交,它工作得很好。这是来自的部分 PHP 代码funds_transfer_backend.php

        $index_num = $_POST['index_num'];
        $to_account_num = $_POST['recipient'];
        $amount = $_POST['amount'];

        if ($amount == '' || $to_account_num == '' || $index_num == -1){
            echo "Please complete the form!";
            $response = -1;
        }
        else {  
                    // other code goes here..

        $display = array('response' => $response); // for ajax response later
        echo json_encode($display);

PHP给了我这个输出:

Please complete the form!{"response":-1}


现在我想用 AJAX 实现它,但它目前不起作用。这是我目前没有工作的 html + jQuery 代码:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script type="text/javascript">

 function update() {
      var    two = $('#index_num').val();
      var    three = $('#recipient_box').val();
      var    five = $('#amount_box').val();


 $.post("funds_transfer_backend.php", { 
    index_num   : two,
    recipient   : three, 
    amount      : five

},function(data){


    if (data.response==-1) { 
        $('#stage').show().html("Please complete the form!"); 
    }

        $('#stage').delay(2000).fadeOut();


},"json");

        } 

</script>

//other code goes here..

<p>Transfer your funds to other account

    <script type="text/javascript">
    // Pre populated array of data
    var myData = new Array();

    <?php

                $sql="SELECT * FROM `account` WHERE client_id='$id'";
                $result=mysqli_query($conn, $sql);

                while($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) { 

                        echo "myData.push('".$row['funds']."');";
                        $result_array[] = $row['id'];
                } 

    ?>
</script>

<form id="example" name="example">
        Select your account<select id="selector" name="index_num" style="margin-left: 10px;">
            <option value="-1">Account Number</option>

    <?php //echo $result_array[0]; 

    $num = count($result_array) - 1;

    $i=0;
    while($i<=$num)
      {
      echo "<option value=\"$i\">$result_array[$i]</option>";
      $i++;
      }

    ?>

        </select>
        <br />
       Funds : RM <input type="text" id="populateme" name="funds" disabled/><br>
       Recipient Account Number <input type="text" id="recipient_box" name="recipient" />  <br> 
       Amount : RM <input type="text" id="amount_box" name="amount"/><br>    

    <input type="button" value="Submit" onclick="update();">
    <input type="reset" value="Reset">
    </form>


    <div id="stage" style="background-color:#FF6666; padding-left:20px; color: white;"></div> 

    <script type="text/javascript">
        document.example.selector.onchange = updateText;

        function updateText() {
          var obj_sel = document.example.selector;
          document.example.populateme.value = myData[obj_sel.value];
    }
    </script>


</p>

上面的 SQL 查询将从 db 中获取数据并将其填充到select boxand中disabled text box。没问题,它目前运行良好。

div id="stage问题是提交和验证后没有响应data.response==-1。我不确定这里有什么问题,可能表格根本没有提交。请提前帮助和感谢。

4

5 回答 5

1

删除此行中的逗号:

amount      : five,
于 2013-06-04T02:46:04.200 回答
1

我认为你应该使用 $('form[name=YourFormName]').serialize();

....
var posted = $('form[name=YourFormName]').serialize();
$.post("funds_transfer_backend.php", posted ,function(data){


if (data.response==-1) { 
    $('#stage').show().html("Please complete the form!"); 
}

    $('#stage').delay(2000).fadeOut();


},"json");
...
于 2013-06-04T03:56:56.720 回答
1

如果您使用的是 chrome,请启动开发人员工具 (ctrl+shift+I),转到 Network 选项卡,然后提交您的表单。如果表单实际上正在提交,您将能够检查请求和响应,以准确查看提交到服务器并从服务器返回的内容。如果您的表单提交,例如由于 JavaScript 错误,该错误将出现在控制台选项卡中。

FireFox 也有类似的调试工具。

其他需要注意的事项:

1)您的 JavaScript 错误地填充了“two”变量。它引用了一个 id 为“index_num”的元素,但是该元素上的 id 是“selector”。话虽如此,您实际上应该只使用 Vu 提到的 serialize() 方法。

2)您的 PHP 代码在回显实际 JSON 响应之前回显原始错误消息。这会导致 JSON 无效。您应该将错误存储到变量中,并使用适当的键(例如“消息”)将该错误推送到关联数组中。然后你可以像这样在你的页面上显示它:

$('#stage').show().html(data.message);
于 2013-06-04T05:39:49.750 回答
1

首先,您在 PHP 中回显错误,并且在 AJAX 成功的响应中期望 JSON。因此,首先删除服务器/PHP 脚本中的以下行,或者说除了 JSON 之外不要回显任何内容。

echo "Please complete the form!";

并确保您的 PHP 输出在正确的场景中如下所示。

{"response":-1}

现在,您data在 AJAX 成功中的变量将仅包含 json 格式。做如下parseJSON检查之前。if (data.response==-1)

function(data){
    data = $.parseJSON(data);
    if (data.response==-1) { 
        $('#stage').show().html("Please complete the form!"); 
    }
    $('#stage').delay(2000).fadeOut();
}
于 2013-06-04T06:02:00.903 回答
1
Add id 
<select id="index_num" name="index_num" style="margin-left: 10px;">
because you index_num value is not sending and you get a notice as response with your
json. Also remove from funds_transfer_backend.php this line -> echo "Please complete the form!"
于 2013-06-04T06:37:22.700 回答