|
Property Iteration
This example shows iterating object properties using jQuery API and direct java script.
03 | < script src = "js/jquery.js" type = "text/javascript" ></ script > |
04 | < script type = "text/javascript" > |
12 | //Property iteration using direct java script |
13 | for(var prop in obj) { |
14 | alert(prop + "--->" + obj[prop]); |
17 | //Property iteration using jQuery |
18 | jQuery.each(obj, function(name, value) { |
19 | alert(name + ": " + value); |
27 | TEST < input type = "button" value = "Test" onclick = "test()" /> |
|
|
|