如何查询精确QQ注册的时间
有时突然好奇自己的QQ是什么时候来的?一定得看看这篇经验。
操作方法
- 01
打开im.qq.com并完成登录。
- 02
按“F12”在“console”(其它浏览器可能显示为“控制台”)中输入以下内容后按回车,。 $.ajax({url : 'https://ti.qq.com/mqqbase/cgi/medalwall/medalguide',dataType: 'json',type : 'POST',xhrFields: {withCredentials: true}, crossDomain: true,contentType: "application/json",success:function(data){if(data.errCode!=0){alert("你没登录?");return;}var d=new Date();d.setTime(data.data.registDate);alert("注册时间:"+d.toLocaleString()+" 第一个添加的好友:"+data.data.firstFriend)}});
- 03
结果显而易见,精确到秒。
赞 (0)