Solve the problem that the responseText returned by the server after ajax processing is JSON data. First, the contents of the file in json format are as follows: { "city":"ShangHai", "telephone":"123456789" } Second, the json data returned by the server is the above content in responseText. Now we need to get it out. There are two ways: Method 1: var json = JSON.parse(request.responseText); alert(json.city); Method 2: var result = request.responseText; var jsonObject = eval("("+result+")"); alert(jsonObject.telephone); This is the end of this article about the detailed case of Ajax responseText parsing json data. For more related Ajax responseText parsing json data content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the installation and configuration process of mysql8.018 on linux
>>: Nginx prohibits direct access via IP and redirects to a custom 500 page
Table of contents 1. What is Promise 2. Basic usa...
The action of the form is different from the URL j...
How Nginx works Nginx consists of a core and modu...
First, install PHP5 very simple yum install php T...
Preface In the MySQL database, sometimes we use j...
Sorting Problem I recently read "45 Lectures...
The commands pulled by docker are stored in the /...
Table of contents 1. Introduction 2. Prepare a pr...
mysql-5.7.17-winx64 is the latest version of MySQ...
Table of contents VARCHAR and CHAR Types Conclusi...
When the DataSource property of a DataGrid control...
The following error is reported when MySQL joins ...
Introduction to MQTT MQTT (Message Queuing Teleme...
Preface When developing a project, I encountered ...
Table of contents The browser's rendering mec...