前几天 已经有 各种查准确时间方法了,现在这个是代码版。
打开 https://vip.qq.com/ 登录 ,然后右键审查元素。部分浏览器 是 审查。
选择 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)}});