Сообщение от DeSharky
|
Имеется объект такого вида:
Сообщение от DeSharky
|
Как правильно это сделать?
|
|
Так понятно?
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
var obj={
"results": {
"fields": [ "Name", "Shirota", "Dolgota", "Contacts" ],
"rows": [
{ "Name": "Bamberg", "Shirota": "48.725925", "Dolgota": "44.541419", "Contacts": "17" },
{ "Name": "Kalash", "Shirota": "48.725935", "Dolgota": "44.541419", "Contacts": "17" }
]
},
"errors": { "length": 0 }
}
jQuery.each(obj, function(i, val) {
alert(i);
});
</script>
</head>
<body>
</body>
</html>