javascript:
function yourFunction(intValue){
$.ajax({
type: 'POST',
url: 'pagination.php',
data: 'page='+ intValue,
success: function(raspuns){
$('#resulte').html(raspuns);
}
});
}
HTML:
<a href="#" onclick="yourFunction('.($this->page + 1).$queryUrl.')">next</a>
当我按下链接时,页面顶部会显示。 该怎么做才能留在原地?
答案 0 :(得分:0)
您可以在功能结束时return false
使用preventDefault()
方法来阻止默认操作。