var arrData = [{
"picture" : "2_2_content/css/myImg/picture1.png",
}, {
"picture" : "2_2_content/css/myImg/picture2.png",
}, {
"picture" : "2_2_content/css/myImg/picture3.png",
}, {
"picture" : "2_2_content/css/myImg/picture4.png",
}, {
"picture" : "2_2_content/css/myImg/picture5.png",
}, {
"picture" : "2_2_content/css/myImg/picture6.png",
}, {
"picture" : "2_2_content/css/myImg/picture7.png",
}, {
"picture" : "2_2_content/css/myImg/picture8.png",
}, {
"picture" : "2_2_content/css/myImg/picture9.png",
}, {
"picture" : "2_2_content/css/myImg/picture10.png",
}, {
"picture" : "2_2_content/css/myImg/picture11.png",
}];
如何給這個arrData繼續添加picture數據???
例如這個如何添加進去:
{
"picture" : "2_2_content/css/myImg/picture12.png",
}
arrData.push({
"picture" : "2_2_content/css/myImg/picture12.png",
});