Parse JSON with jQuery

Nach dem Tutorial über das Verarbeiten von XML mit jQuery, nun eines über das Parsen von JSON mit jQuery.

Getting JSON using jQuery is extremely straightforward. Just like $.ajax(), there is a $.getJSON() method, with a call to a file, and a function to pass the data through for parsing. The common $.each() method in jQuery can be used to traverse the “nodes” (keys) that you indicate. You could just as easily use your own for loop.

Possibly related posts (automatically generated)