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.phpxmlhttp.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 に答える