理由はわかりませんが、非常に単純な Jquery の投稿が正しく機能しません。以下のように index.php と temp.php があります。if 条件の前にアラートを出すと、データが「OK」を返すため、まだ「NOT RETURNED OK」と表示されます。理由はわかりません。
index.php:
<? session_start(); ?>
<!DOCTYPE HTML>
<meta charset="windows-1250">
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery- ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"> </script>
<link rel="stylesheet" type="text/css" href="style.css" />
<script>
function do_post(item)
{
$.post("temp.php", {par:item}, function(data,status){
//alert("Data: " + data + "\nStatus: " + status);
if(data=="ok")
{
alert('RETURNED OK');
//location.reload();
}
else
{
alert('NOT RETURNED OK');
}
});
}
</script>
<body>
<a href="#" onclick="do_post('whatever');">click</a>
</body>
</html>
temp.php:
<? echo "ok"; ?>
アイデアをお寄せいただきありがとうございます。