在php中使用ajax向后台传递数据时,url的格式需要符合一定规则。以下是如何利用jquery获取id后,使用ajax将数据传递给indexcontroller.class.php下的index方法:
$.ajax({ url: "index.php?action=log", // action参数指定要调用的方法 data: $("#aa").serialize(), // serialize函数将表单元素序列化为字符串 dataType: "json", // 期待后台返回的数据类型为json type: "POST", // 使用POST方法发送数据 success: function(res) { // success回调函数处理响应数据 if(res.status == "ok") { // 如果后台返回的状态为"ok" window.location = "index.php"; // 刷新页面 } else { // 否则 $('#msg').html(res.msg); // 显示错误信息 } } <br> });
在这个示例中,url格式为:”index.php?action=log”,其中”action”参数指定要调用的方法为index。