Este método parseJSON() en jQuery toma una string JSON bien formada y devuelve el valor de JavaScript resultante.
Sintaxis:
jQuery.parseJSON( json )
Parámetros: el método parseXML() acepta solo un parámetro que se menciona arriba y se describe a continuación:
- json: este parámetro es la string JSON bien formada que se analizará.
- Valor devuelto: Devuelve lo siguiente:
- Cuerda
- Número
- Objeto
- Formación
- booleano
Ejemplo 1:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | parseJSON() method</title> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> <style> #a { color: blue; } #b { color: red; } </style> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksForGeeks </h1> <h3>JQuery | parseJSON() method</h3> <b id="a"></b> <script> var txt = '{"name":"John", "age":30, "city":"New York"}' var obj = jQuery.parseJSON(txt); document.getElementById("a").innerHTML = "Object Name : "+obj.name + "<br> Object Age : " + obj.age; </script> </body> </html>
Producción:
Ejemplo 2: .
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | parseJSON() method</title> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksForGeeks </h1> <h3>JQuery | parseJSON() method</h3> <button onclick="gfg()">Click</button> <script> function gfg(){ var txt = '{"name":"Shubham Singh", "age":21, "Cars":"ABC" }' var obj = jQuery.parseJSON(txt); alert( obj.name === "ABC" ); } </script> </body> </html>
Salida:
Antes de hacer clic:
Después de hacer clic:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA