尝试使用 jQuery post 方法调用这个 PHP 文件,但是当单击具有类 'reg-btn' 的按钮时它没有做任何事情。
这是我的 jQuery
$('.reg-btn').click(function(){
$.post('/new-user.php');
});
这是 PHP 文件,使用 header 查看它是否被调用。
<?php
include_once('includes/init.inc.php');
header('Location: index.php');
?>
任何帮助是极大的赞赏。