Ajax,

Ajax、
        var xhr = new XMLHttpRequest(); // 创建XMLHttpRequest对象
        xhr.open("GET", "http://example.com/api/data", true); // 打开与服务器的连接
        xhr.onreadystatechange = function () { // 当状态改变时执行函数
            if (xhr.readyState === 4 && xhr.status === 200) { // 判断请求完成并且成功
                var responseData = JSON.parse(xhr.responseText); // 将返回的JSON字符串转换为对象
                console.log(responseData); // 输出返回的数据
            } else {
                console.error('Error occurred'); // 若有错误则输出错误信息
            }
        };
        xhr.send(); // 发送请求

        //jquery  
            $.get("url",data,fun(){},"text")
            $.post("url",data,fun(){},"text")
            $.ajax({
                url:"",
                type:"get|post",
                data:{},
                datatype:"",
                success(){}
                //success:function(){}
            })
        
        //   easyui  bootstrap jsp(原生的)

你可能感兴趣的:(ajax,前端,javascript)