工具:
1.Google Chrome 瀏覽器
2.需要導出設備的蘋果賬號
3.需要導入設備的蘋果賬號
步驟
1.進入需要導出設備的列表頁
2.右鍵網頁莺丑,點擊檢查
3.點擊Sources,新建一個文件
4.寫入代碼
var list = document.querySelectorAll(".infinite-scroll-component .row");
var cout = 0;
list.forEach(row=>{
var children = row.children;
var uuid = children[1].innerText;
// var name = children[0].innerText; //名稱
// var type = children[2].innerText; //類型
console.log(uuid + ' ' + 'Name'+cout + ' ' + 'ios');
cout++;
}
);