要在PHP中使用Ajax實(shí)現(xiàn)局部刷新,你需要遵循以下步驟:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ajax Example</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<h1>Ajax Example</h1>
<button id="loadData">Load Data</button>
<div id="content"></div>
<script>
$(document).ready(function() {
$("#loadData").click(function() {
$.ajax({
url: 'load_data.php', // PHP文件的路徑
type: 'GET',
success: function(response) {
$("#content").html(response);
},
error: function() {
alert("Error loading data.");
}
});
});
});
</script>
</body>
</html>
<?php
// 在這里編寫你的PHP代碼,例如從數(shù)據(jù)庫獲取數(shù)據(jù)
$data = '<h2>Data loaded from PHP file</h2>';
echo $data;
?>
在這個(gè)例子中,我們使用了jQuery庫來簡(jiǎn)化Ajax請(qǐng)求。當(dāng)用戶點(diǎn)擊"Load Data"按鈕時(shí),JavaScript代碼會(huì)發(fā)送一個(gè)Ajax請(qǐng)求到load_data.php
文件。成功獲取數(shù)據(jù)后,將返回的HTML內(nèi)容插入到#content
元素中,實(shí)現(xiàn)局部刷新。