指定した 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>