Este es mi Json
Código json:
Ver original
{ "pets":[ { "animal":"dog", "name":"Fido" }, { "animal":"cat", "name":"Felix" }, { "animal":"hamster", "name":"Lightning" } ] }
index.html
Código HTML:
Ver original
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> <script> $(document).ready(function(){ $("button").click(function(){ $("table").show(); $.getJSON("pets.json", function(data){ $.each(data, function(key, value){ }); }); }); }); </script> </head> <body> <br /> <div class="container" style="width:600px;"> <table class="table table-bordered" style="display:none;"> <tr> </tr> </table> </div> <br /> </body> </html>