Native JSHow to send a get request
var xhr = new XMLHttpRequest() xhr.open('get', '/ajax') xhr.onload = function () { console.log(xhr.responseText) } xhr.send(null) How to send a post request
var xhr = new XMLHttpRequest() xhr.open('post', '/ajax') xhr.onload = function () { console.log(xhr.responseText) } xhr.send(null) Send a get request with parameters
Send a post request with parametersvar xhr = new XMLHttpRequest No need to add anything after the request address
xhr.onload = function () { console.log( xhr.responseText ) } The parameters carried by the post method are written directly in the () after xhr.send()
var xhr = new XMLHttpRequest() xhr.open('post', '/ajax') xhr.onload = function () { console.log(xhr.responseText) } xhr.setRequestHeadr('content-type', 'application/x-www-form-urlencoded') xhr.send('key=value&key=value') var fd = new FormData(document.querySelector('form')) var xhr = new XMLHttpRequest() xhr.open('post', '/ajax') xhr.onload = function () { console.log(xhr.responseText) } xhr.send(fd) jQueryHow to use several parameters of $.getaddress
$.post several parameters, how to use them
$.ajax several parameters, how to use
JSONPHow to send jaonp request using $.ajax
$.ajax({ url: '/jsonp', data: {}, dataType: 'jsonp', jsonp: 'callback', success (res) { console.log(res) } }) SummarizeThis is the end of this article about the usage of ajax in js and jQuery. For more information about the usage of ajax in js and jQuery, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: CentOs7 64-bit MySQL 5.6.40 source code installation process
>>: Nginx defines domain name access method
Table of contents 1. Introduction to autofs servi...
1. Install vue-cli npm i @vue/cli -g 2. Create a ...
Table of contents Preface Quick Review: JavaScrip...
1. haslayout and bfc are IE-specific and standard ...
When we add an svg image to display, react prompt...
Preface The mini program has a very convenient AP...
Table of contents Enter the topic mysql add, dele...
MySql Index Index advantages 1. You can ensure th...
Table of contents background analyze Data simulat...
1. Scenario description: Our environment uses mic...
In addition to setting regulations for various ta...
If we want to make a carousel, we must first unde...
In the previous article [Detailed explanation of ...
This note is an installation tutorial. It has no ...
environment: 1. Windows Server 2016 Datacenter 64...