我發現一個程序,從jQuery的形式發送到PHP文件的數據。但是當我試圖找到它時,它什麼也沒有顯示。當我點擊加載數據按鈕時,什麼都沒有。程序中有問題嗎?我怎樣才能得到從我的HTML文件發送到PHP的數據,並接收並顯示數據
main.php
<?php
if($_REQUEST["name"])
{
$name = $_REQUEST['name'];
echo "Welcome ". $name;
}
?>
的index.html
<html>
<head>
<title>the title</title>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js/"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$("#driver").click(function(event){
$.post(
"main.php",
{ name: "Zara" },
function(data) {
$('#stage').html(data);
}
);
});
});
</script>
</head>
<body>
<p>Click on the button to load result.html file:</p>
<div id="stage" style="">
STAGE
</div>
<input type="button" id="driver" value="Load Data" />
</body>
</html>
請解決該問題。在此先感謝
您的網址是'/ jQuery的/ result.php',但你上面提供的一個是'main.php' – user1978142
是什麼問題? – Haseeb
我已經改變,但仍然沒有爲我工作。請幫助 – user3647254