1

为什么我的帖子数据出现在新的空白页上,而不是我指定的 div 上?该脚本位于名为 order.php 的页面的头部。我希望将提交的数据写入我在 order.php 上创建的“消息”div 中。但是当我提交时,我被重定向到 update.php,其中数据写在一个空白页面上。

<script type="text/javascript">
    function insert() {
        if (window.XMLHttpRequest) {
            xmlhttp = new XLMHttpRequest();
        } else {
            xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
        }

        xmlhttp.onreadystatechange = function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                document.getElementById("message").innerHTML = xmlhttp.responseText;
            }
        }

        parameters = 'child_name'+document.getElementById('child_name').value;

        xmlhttp.open('POST', 'update.php', true);
        xmlhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
        xmlhttp.send(parameters); 
    }
</script>
4

2 回答 2

0

您当前的页面是order.php并且您update.php通过执行此操作将其发布到xmlhttp.open('POST', 'update.php', true);

于 2012-10-17T14:32:57.533 回答
0

这可能是由于正常的表单提交事件。

use a simple jquery

$("#form").submit(function(){
 $.post("update.php",{paramertes:'child_name_'+$("#child_name").val()},function(data){
$("#message").html(data);
})

 return false;//don't forget to use this
})
于 2012-10-17T14:35:54.507 回答