Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- 빅데이터 지식
- 데이터 엔지니어
- binary search tree
- Computer Organization
- 화장실 지도
- Study
- Computer Science
- Linked List
- 빅데이터 커리어 가이드북
- Data Engineer
- 데이터 분석가
- Preparing for the Google Cloud Professional Data Engineer Exam
- data
- priority queue
- Algorithms
- Restroom
- Data Analyst
- Data Structure
- 뉴욕 화장실
- HEAPS
- Heap
- 빅데이터
- Newyork
- BST
- exam
- dataStructure
- data scientist
- hash
- algorithm
- Binary Tree
Archives
- Today
- Total
Jaegool_'s log
What is AJAX? 본문
AJAX stands for Asynchronous JavaScript and XML. It is a set of web development techniques used to create interactive and dynamic web applications. AJAX allows web pages to update content asynchronously, meaning data can be retrieved from a server and loaded into a web page without requiring a full page refresh.
Here's how AJAX typically works:
- Asynchronous: AJAX allows data to be fetched from a server and processed in the background without interrupting the user's current interaction with the web page. This means that users can continue using the page while data is being loaded.
- JavaScript: AJAX uses JavaScript to initiate and handle the asynchronous requests to the server. JavaScript makes it possible to manipulate the Document Object Model (DOM) of the web page and update the content dynamically.
- XML (or JSON): In the past, XML was often used as the data format to exchange information between the client (web browser) and the server. However, nowadays, JSON (JavaScript Object Notation) is more commonly used due to its lighter weight and easier parsing in JavaScript. JSON has become the preferred data format for AJAX requests.
AJAX is commonly used for various purposes, such as:
- Loading new data into a web page without requiring a full page refresh (e.g., updating search results, comments, or news feeds).
- Submitting form data to the server and handling responses without reloading the page.
- Building real-time web applications that update data automatically (e.g., chat applications).
- Implementing more responsive and interactive user interfaces.
By using AJAX, web developers can create more fluid and responsive web applications, providing users with a smoother and more enjoyable browsing experience.
'Development Log > Web Development' 카테고리의 다른 글
안산시 오소가게 이미지 (0) | 2024.04.05 |
---|---|
nyrestroom app image (0) | 2024.03.28 |
웹개발 종합반 5주차 내용 [스파르타 코딩] <bucket-list(toDoList), deploy a web with AWS & FileZilla & 가비아> (0) | 2022.05.31 |
웹개발 종합반 4주차 내용 [스파르타 코딩] <Flask, POST, GET> (0) | 2022.05.23 |
웹개발 종합반 3주차 내용 [스파르타 코딩] <Python, crawling, mongoDB> (0) | 2022.05.21 |