我瘋了,我不知道爲什麼,但我非常簡單的Jquery帖子無法正常工作。 我有index.php和temp.php如下。我仍然收到「未返回正常」,不知道爲什麼,因爲如果我在if條件之前提醒它,數據返回「ok」。JQuery後無法正常工作
的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"; ?>
在此先感謝您的任何想法。
'data'可能包含不可見的字符。 –
那麼他說如果他運行警報(數據)他回來'好'。 – Rell
@EvanMulawski很可能是正確的。試試這個:在你的if(data)語句之前,添加'console.log(typeof data,data.length)'並告訴我們控制檯返回的內容。 –