$.each()方法遍歷json格式資料程式碼例項

antzone發表於2017-04-06

本章節分享一段程式碼例項,它使用$.each()方法對json格式資料進行遍歷。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<title>螞蟻部落</title> 
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> 
<script type="text/javascript">
var str="";
var arr={ 
  "前端專區":"div css", 
  "url": "softwhy.com", 
  "age": 2
};
$.each(arr,function(key, value) { 
  str=str+key + ":" + value+"<br/>"
});
$(document).ready(function(){
  $("#antzone").html(str);
});
</script>
</head>
<body>
<div id="antzone"></div>
</body>
</html>

上面的程式碼實現了我們的要求,跟多內容可以參閱相關閱讀。

相關閱讀:

(1).$.each()可以參閱jQuery.each()一章節。

(2).html()可以參閱jQuery html()一章節。

相關文章