工具:
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++;
}
);