欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery中的ajax写法

程序员文章站 2022-07-15 14:31:16
...

一、第一种:

$.post("url", {"func": "getNameAndTime"},function(data, status) {
						
					}, "json");

二、第二种

 $.ajax({
            type: "GET",
            url: "",
            data: {},
            dataType: "json",
            success: function (res) {
                
            }
        });

 

相关标签: ajax js jquery