在jquery中遍歷對象屬性的方法:1.新建html項目,引入jquery;2.在項目中定義對象,并賦值;3.使用$.each方法遍歷對象屬性;
具體步驟如下:
1.首先,在新建一個html項目,在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中定義一個對象,并賦值;
var obj = { one: 1, two: 2, three: 3, four: 4, five: 5 };
3.最后,對象定義好后,使用$.each方法即可對對象的屬性進行遍歷;
text = "Object ";
$.each(obj, function(i, val) {
text = text + "Key:" + i + ", Value:" + val;
});
console.log(text);