这是我的例子:
class test {
function tester(){
do something;
}
}
如果点击按钮,我需要检查ajax:
echo "<button name=\"updateList\" type=\"button\">↻ Update the List</button>";
如果是,使用ajax我需要调用测试方法
$(document).ready(function(){
$("button").click(function(){
$.ajax({url:"index.php",
type: "post",
data: {action: 'updateList'}
});
});
});
我需要一些提示或帮助如何做到这一点,我想这样做因为我不希望我的页面在点击按钮后刷新。
答案 0 :(得分:0)
//index.php
if(isset($_POST['action']&&$_POST['action']=='updatelist'){
$test = new Test();
$test->tester();
}