尝试使用jQuery post方法调用此PHP文件,但是当单击带有“reg-btn”类的按钮时,它没有执行任何操作。
这是我的jQuery
$('.reg-btn').click(function(){
$.post('/new-user.php');
});
这是PHP文件,使用标头来查看它是否被调用。
<?php
include_once('includes/init.inc.php');
header('Location: index.php');
?>
非常感谢任何帮助。