Jquery中ajax基本语法

Posted 叶少翔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery中ajax基本语法相关的知识,希望对你有一定的参考价值。

一.$.ajax的基本使用结构
var response = $.ajax({
        type: "POST",
        url: "/index.php?m=content&c=index&a=getList",
        data: {
            "page" : currentPage,
            "pTime":new Date().getTime()
        },
        dataType: "json",
        beforeSend:function(){
            //发送时的代码提示
        },
        success: function(data){
            //成功时的代码提示
        },
        complete:function(){
            //完成时的代码提示
        },
        error: function (msg){
            //报错时的代码提示
        },
        async: true
    });
二.$.post的基本使用结构
var data = {
      ‘page‘:page,
      ‘pagesize‘:pagesize,
      ‘type‘: type
    }
    $.post(
        ‘/index.php?m=content&c=index&a=index‘,
        data,
        function(data){
            console.log(data);
        },
        ‘json‘
    );
三.$.ajax的onready事件
$(function(){
     //加载事件
});
$(document).ready(function(){
  //加载事件
});
四.juery的on方法绑定动态元素的点击事事件
/**
 * 事件绑定处理
 */
jQuery(document).on("click","[rel=‘zanLink‘]",function(event){
    //判断是否登陆
    if(!jQuery.cookie("58haha_t")){
      window.location.href = passport_login;
      return false;
    }
    //代码处理
});

以上是关于Jquery中ajax基本语法的主要内容,如果未能解决你的问题,请参考以下文章

html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。

Javascript代码片段在drupal中不起作用

jQuery高级Ajax

几个非常实用的JQuery代码片段

利用ajax实现与php数据交互,并局部刷新页面

使用jQuery函数:选择器 工具类 Ajax