var obj={"1":"a","2":"b"} for (var key of Object.keys(obj)) { console.log(key,obj[key]) } 或者: for (let [key, value] of ...
確定! 回上一頁