1 回答
TA贡献1784条经验 获得超2个赞
您可以使用jQuery库通过 AJAX 发出请求。第一件事是注册按钮。
<button id="cool-btn">My button</button>
按钮运行后,您可以将此脚本添加到 html 或 JS 文件中。
<script>
$(document).ready(function() {
$("#cool-btn").click(function(){
attemptRequest();
});
});
</script>
现在您需要创建一个名为 attemptRequest 的函数,它为您向 PHP 表单发出 AJAX 请求。
function attemptRequest() {
$.post( "ajax/test.php", function( data ) {
if (data.success) {
alert(data.message);
} else {
alert("Sad :( - invalid session");
}
});
}
然后,您需要在 ajax 文件夹中名为 test.php 的 PHP 脚本中执行会话检查,并返回适当的数据。
$data = new stdClass();
$data->success = false;
$data->message = "";
if (isset($_SESSION['pageadmin'])) {
$data->message = "hello world";
$data->success = true;
}
return json_encode($data);
希望这有帮助:)
添加回答
举报