Jump to content
  • 0

Не работает post в ajax


MrPostman
 Share

Question

Простейшая задача, использующая ajax. Передаём параметр из одного в другой файл по щелчку на ссылке, тот выводит его на экран без перезагрузки страницы. GET работает, POST не работает. Что неправильно?

num.php


<html>
<head>
<title>page</title>
<script type="text/javascript">
function getXmlHttp()
{
var xmlhttp;
try
{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}

catch (e)
{
try
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (E)
{
xmlhttp = false;
}
}

if (!xmlhttp && typeof XMLHttpRequest!='undefined')
{
xmlhttp = new XMLHttpRequest();
}

return xmlhttp;
}

// Функция, осуществляющая AJAX запрос
function loadXMLDoc(method, url, param)
{
req = new getXmlHttp();
req.onreadystatechange = processReqChange;
req.open(method, url, true);
req.setRequestHeader("Content-type", "text/html");
req.setRequestHeader("Content-length", param.length);
req.setRequestHeader("Connection", "close");
req.send(param);
}

function processReqChange()
{
if(req.readyState == 4)
{
if(req.status == 200)
{
getNumber(req.responseText);
}

else
{
alert("There was a problem retrieving the XML data:\n" + req.statusText);
}
}
}
// Функция выполняется при щелчке на "ссылке"
function onClick( num )
{
var url = "ajax.php";
var param = "par="+num;
loadXMLDoc( "post", url, param );
}
// Функция записывает в элемент content значение, полученное от сервера
function getNumber( number )
{
var content = document.getElementById( "content" );
content.innerHTML = number;
}
</script>
</head>
<body>
<span style="color:blue; text-decoration:underline; cursor:pointer" onClick="onClick(1)">ссылка</span>
<div id="content" />
</body>
</html>

ajax.php


<?php
if ( isset( $_POST['par'] ) )
{
$par = (int)$_POST['par'];
echo $par;
}
else echo 'This way!';
?>

В итоге всегда пишет This way, значение не передаётся.

Edited by MrPostman
Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Да не, я это всё уже испробовал. Гет маленькими буквами работает, а пост не работает ни маленькими, ни большими.

попробуй посмотреть что в серверном скрипте, как сказал Great Rash..

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy