我试图获得一个不同的数据,但是ajax调用只能在第一次运行,下面的代码是我的代码,我尝试设置cache:false,但它不起作用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Pagination plugin</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" integrity="sha384-2hfp1SzUoho7/TsGGGDaFdsuuDL0LX2hnUp6VkX3CUQ2K4K+xjboZdsXyp4oUHZj" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity="sha384-THPy051/pYDQGanwU6poAc/hOdQxjnOEXzbT+OuUAFqNqFjL+4IGLBgCJC3ZOShY" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js" integrity="sha384-Plbmg8JY28KFelvJVai01l8WyZzrYWG825m+cZ0eDDS1f7d/js6ikvy1+X+guPIB" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/js/bootstrap.min.js" integrity="sha384-VjEeINv9OSwtWFLAtmc4JCtEJXXBub00gtSnszmspDLCtC0I4z4nqz7rEFbIZLLU" crossorigin="anonymous"></script>
<script src="jquery.twbsPagination.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div id="div_Relacion_contactosCris"></div>
<nav aria-label="Page navigation">
<ul class="pagination" id="pagination"></ul>
</nav>
</div>
<script type="text/javascript">
$(function () {
var obj = $('#pagination').twbsPagination({
totalPages: 35,
visiblePages: 10,
onPageClick: function (event, page) {
console.info();
alert(page)
// VerRelacionContactos(page);
$.ajax({
type: "POST",
dataType: "html",
cache: true,
url: "Procesos/relacionContactosCliente.asp?CveEmp=EMP5264&Propietario=INEDVE011&Donde=Cliente&IdC=25809&NombreComercial=EMPRESA%20MARTHA&pagina=1",
data: "",
beforeSend: function (objeto) {
$("#div_Relacion_contactosCris").empty();
$("#div_Relacion_contactosCris").html('<div align="center"><img src="imageSys/loader.gif"></div>');
},
success: function (datos) {
$("#div_Relacion_contactosCris").empty();
$("#div_Relacion_contactosCris").html(datos);
},
complete: function (objeto, exito) {
},
error: function (objeto, quepaso, otroobj) {
$("#div_Relacion_contactosCris").html("<h1>Favor de contactar al administrador</h1>");
}
});
}
});
});
</script>
</body>
</html>
启动页面时,调用工作正常,但当我点击另一页时,ajax调用会出现此错误
未捕获TypeError:$ .ajax不是函数
谁可能是问题?