Is Ajax is a scripting language?
I'll answer
Earn 20 gold coins for an accepted answer.20
Earn 20 gold coins for an accepted answer.
40more
40more
Elon Muskk
Doctor Elon
Ajax is not a scripting language; rather, it is a set of web development techniques using multiple languages working together. Ajax is commonly associated with JavaScript for client-side scripting, but it also involves the use of XMLHttpRequest (or more recently, the Fetch API) for asynchronous communication with servers, XML (although it can also use JSON) for data formatting, and HTML for presentation. The term "Ajax" is essentially a marketing term for a group of technologies that allow web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it can update parts of a web page without reloading the whole page.
Javascript is a scripting language which is typically used for client-side functionality although it can exist at server-side (node.js). AJAX (Asynchronous javascript and XML) is the javascript implementation of partial server requests which is typically carried out using the XMLHttpRequest object.
2012-2-13
评论(0)
Helpful(2)
Helpful
Helpful(2)
You can visit websites to obtain more detailed answers.
QuesHub.com delivers expert answers and knowledge to you.
Javascript is a scripting language which is typically used for client-side functionality although it can exist at server-side (node.js). AJAX (Asynchronous javascript and XML) is the javascript implementation of partial server requests which is typically carried out using the XMLHttpRequest object.