jQuery如何做一个简单ajax交互功能

2025年01月05日 建站教程

html开发中利用jQuery的$.ajax()函数进行接口叫。 $.ajax()函数提供了一个简单的方法来向服务器发送HTTP请求,并可以跟踪请求的当前状态。

具体代码如下:

$.ajax({
  url: 'index.php', // 请求地址
  type: 'post',   // 请求类型、get
  data: {name: 'test'}, // 发送到服务器的数据
  success: function(data) { // 成功回调函数
      cosole.log('输出正确数据:', data);
  },
  error: function() { // 失败回调函数
      cosole.log('请求失败输出');
  }
});

本文链接:http://so.lmcjl.com/news/20772/

展开阅读全文
相关内容