var STR_Qstr loginN_SELECT_OFFLINE="您所选择号码对应的QQ已经失效,请…

温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!&&|&&
LOFTER精选
网易考拉推荐
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
历史上的今天
loftPermalink:'',
id:'fks_',
blogTitle:'33个QQ技巧,但不要做坏事哦…不转后悔哦!很难找的哦…',
blogAbstract:'&&2查看QQ上对方是否把你加为好友方法&&3普通QQ号克隆好友&&'
{list a as x}
{if x.moveFrom=='wap'}
{elseif x.moveFrom=='iphone'}
{elseif x.moveFrom=='android'}
{elseif x.moveFrom=='mobile'}
${a.selfIntro|escape}{if great260}${suplement}{/if}
{list a as x}
推荐过这篇日志的人:
{list a as x}
{if !!b&&b.length>0}
他们还推荐了:
{list b as y}
转载记录:
{list d as x}
{list a as x}
{list a as x}
{list a as x}
{list a as x}
{if x_index>4}{break}{/if}
${fn2(x.publishTime,'yyyy-MM-dd HH:mm:ss')}
{list a as x}
{if !!(blogDetail.preBlogPermalink)}
{if !!(blogDetail.nextBlogPermalink)}
{list a as x}
{if defined('newslist')&&newslist.length>0}
{list newslist as x}
{if x_index>7}{break}{/if}
{list a as x}
{var first_option =}
{list x.voteDetailList as voteToOption}
{if voteToOption==1}
{if first_option==false},{/if}&&“${b[voteToOption_index]}”&&
{if (x.role!="-1") },“我是${c[x.role]}”&&{/if}
&&&&&&&&${fn1(x.voteTime)}
{if x.userName==''}{/if}
网易公司版权所有&&
{list x.l as y}
{if defined('wl')}
{list wl as x}{/list}javascript笔试题参考整理(***)_百度文库
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
javascript笔试题参考整理(***)
上传于||文档简介
&&J​A​V​A​S​C​R​I​P​T​,​整​理​题​目
阅读已结束,如果下载本文需要使用1下载券
想免费下载本文?
定制HR最喜欢的简历
下载文档到电脑,查找使用更方便
还剩7页未读,继续阅读
定制HR最喜欢的简历
你可能喜欢QQ登陆代码分析
QQ登陆代码分析
【网页游戏外挂的设计与编写
06:05:04】
网页游戏外挂的设计与编写:QQ摩天大楼【一】(基本技术)
网页游戏外挂的编写很简单,不需要研究其源代码,不需要懂得汇编知识,只需要分析发送到服务器和服务器发送到本地的数据包就可以写出来。
但是如果你想尽快分析数据包中的内容并得到结果,那么你可能还需要研究一下源代码。
如果游戏是Flash做的,那么你需要下载一个Flash反编译软件,有的反编译软件像ASV 6.0提供搜索IE
Cache的功能,网页游戏的Flas***件就保存在IE
Cache里,找到这些文件并反编译之,就可以得到网页游戏的源代码,像风靡一时的开心农场,和我将要提到的QQ摩天大楼,都可以用这种方法得到源代码。
有的游戏不是Flash做的,是JavasSript做的,那么你就需要分析一下那个页面的JavasSript的源代码,对网页直接查看源文件就可以得到源代码了。
当然,像开头所说的,不分析源代码也是可行的,只要有足够的耐心,有足够的数据,再加上你的聪明才智,外挂也是可以写出来的。
首先我要声明一句,现在的网络游戏不管是小型B/S的还是有大型客户端的,其数据的处理都已经全部放在了服务器端,也就是说,客户端不处理任何的数据,那客户端处理什么?客户端只负责向服务器端发送数据,接收数据,并向用户呈现数据。所以,现在所谓的外挂已经不能修改数据了,以开心农场为例,我们能做的无非是做点以最快的速度偷菜,自动收菜,种菜之类的工作。如果你硬是想修改数据,恐怕只有黑掉服务器或者贿赂GM两条路可走。
虽然我说过这种外挂很简单,但我还是不得不列出制作这种外挂需要的基本知识以及为什么需要这些知识。
(1)JavaScript。我们进入网页游戏是要先登陆的,像要进入校内(人人)网的应用就需要先登陆人人网,要进入QQ的应用就需要先登陆QQ校友或者QQ空间。没有登陆,我们连游戏都进不了,那么外挂就不能与游戏建立连接了,之后的偷菜又从何谈起?那么我们又是从哪里登陆呢?我们从网页登陆,由JavaScript负责发送与接收。所以看不懂(能看懂就行,不需要会写)JavaScript的人,请在此止步,回去翻翻书再继续。
(2)网络编程知识。任何一门语言都可以,在此我用的是C#,你用Java,C++或者其他的什么都行,只要可以发送Http数据包。当然,能熟悉多线程就再好不过了。如果不幸的是你都不会,那就只好赶紧去学了,切记要稳扎稳打,不要好高骛远,不然只能一事无成。
另外,如果你会Action Script,那么你就可以分析Flash游戏的代码,对外挂的编写是事半功倍的。
或许有人已经跃跃欲试,好的,下一篇就说如何分析JavaScript代码并登陆到游戏。
*************************************************************************************************************************************************************************************************************
【登陆准备-信息处理方式
06:09:27】
上一篇文中提到,制作外挂的第一步,是与游戏进行连接,即登陆游戏。
对于QQ的游戏来说,可以有两种方法登陆游戏。一种是登陆空间再登陆游戏,QQ农场,QQ抢车位的游戏都可以这样登陆;另一种是登陆QQ校友再登陆游戏,QQ农场,QQ摩天大楼都可以这样登陆。
我要给大家讲的是第二种,或许有更好的方法,我在此权作是抛砖引玉。
我在第一篇文章中写道
我们进入网页游戏是要先登陆的,像要进入校内(人人)网的应用就需要先登陆人人网,要进入QQ的应用就需要先登陆QQ校友或者QQ空间。没有登陆,我们连游戏都进不了,那么外挂就不能与游戏建立连接了,之后的偷菜又从何谈起?那么我们又是从哪里登陆呢?我们从网页登陆,由JavaScript负责发送与接收。所以看不懂(能看懂就行,不需要会写)JavaScript的人,请在此止步,回去翻翻书再继续。
有人可能要问了:“我们是否可以这样做,用抓包工具把登陆时与QQ服务器交互的数据包截获下来,查看一下发送的内容和URL,然后我们再照着同样的格式,重放一遍,不就达到目的了吗?这样做就可以省去分析JavaScript的步骤了。”
这个问题问得好,是的,登陆的时候只要知道URL,知道服务器地址,发送的内容无非就是用户名和密码,把用户名和密码插在URL中相应的位置就行了。但是真有这么简单吗?***是否定的,原因就是密码不是用明文传送的,用户名可以是,但是密码绝对不能是,不然密码很容易被盗,只要对你的网络实施搭线窃\听就可以截获你的QQ密码了。所以密码那部分是经过处理的,一般的处理方式是用哈希算法,现在广泛使用的哈希算法是MD5,但是具体他们怎么用的哈希算法,到底是不是用的MD5,就不得而知了,我们就是要通过分析他们的JavaScript代码,知道他们是处理密码的方式,然后我们用同样的方法处理一下,然后发送给他们的服务器,才能登陆成功。
不知大家做好准备了没,看懂JavaScript也不太难,相信有八成的人是做好准备了。
我们首先打开IE,转到http://xiaoyou./index.html,这是QQ校友的登陆页面,查看该页面的代码。这个页面的代码没有什么有价值的东西,我们希望截取的是按下登陆按钮后,发生了什么动作。但是这些代码里找不到那个函数,甚至找不到那个按钮,连输入用户名和密码的textbox都找不到。不过别担心,看那页代码靠近最下方,有一句
var iframe_src = 'http://ui./cgi-bin/login?
appid=&hide_title_bar=1&qlogin_jumpname=xiaoyou_qlogin&
s_url='+url+'&css=/campus/login/login.css&
self_regurl=http://xiaoyou./emailreg.html';
通过观察其URL的名称,我们猜测,这iframe应该就是装有登陆零配件的iframe,输入用户名和密码的textbox和登陆按钮应该在那个页面上。
我们把代码中的URL复制到IE地址栏,回车之后会发现果然是我们要找的登陆页面,截图如下:
我们继续查看该网页的代码,可以找到一个onsubmit事件,那个form提交表单时执行的事件,我们要找的就是这个,代码如下:
onsubmit="if(!isAbleSubmit){};return
ptui_onLoginEx(loginform, 'qq.com')";
我们发现,这个事件最终执行了一个ptui_onLoginEx函数,我们接下来得找到这个函数,按下Ctrl+F输入"ptui_onLoginEx”,但是IE会提示找不到,不过大家放心,这段JavaScript代码一定会在本机执行的,要执行就必须先下载到本机,通过仔细查找,发现原来该页面还加载了一个外部的js文件:
复制URL到IE地址栏,把comm.js文件下载到本机,然后查看comm.js,我们在这个文件中找到了ptui_onLoginEx函数。
function ptui_onLoginEx(B, C) {
g_time.time12 = new Date();
(ptui_onLogin(B)) {
var A = new Date();
A.setHours(A.getHours() + 24 * 30);
if (isNaN(B.u.value) &&
(B.u.value.indexOf("@") & 0)) {
&&&&&&&&&&&
setCookie("ptui_loginuin2", B.u.value, A, "/", "ui.ptlogin2." +
&&&&&&&&&&&
setCookie("ptui_loginuin", B.u.value, A, "/", "ui.ptlogin2." +
&&& return
该函数调用了ptui_onLogin函数,还在本地添加了COOKIE,可以看到QQ校友登陆成功后COOKIE的有效时间是30天。
下面我们再查看ptui_onLogin函数。
&function ptui_onLogin(A) {
&&&&&&&&&&&
if (parent.ptlogin2_onLogin) {
&&&&&&&&&&&&&&&
if (!parent.ptlogin2_onLogin()) {
&&&&&&&&&&&&&&&&&&&
return false
&&&&&&&&&&&&&&&
&&&&&&&&&&&
&&&&&&&&&&&
if (parent.ptlogin2_onLoginEx) {
&&&&&&&&&&&&&&&
var D = A.u.
&&&&&&&&&&&&&&&
var B = A.verifycode.
&&&&&&&&&&&&&&&
if (ptui_str(STR_UINTIP) == D) {
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&
if (!parent.ptlogin2_onLoginEx(D, B)) {
&&&&&&&&&&&&&&&&&&&
return false
&&&&&&&&&&&&&&&
&&&&&&&&&&&
} catch(C) {}
return ptui_checkValidate(A)
这个函数调用了parent的ptlogin2_onLogin以及ptloin2_onLoginEx等方法,这两个方法的实现无光紧要,关键看最后一句返回return
ptui_checkValidate(A)。
于是我们继续查看ptui_checkValidate函数。
function ptui_checkValidate(B) {
&&& var A =
&&& var D =
&&& var E =
&&& if (A.value
== "" || ptui_str(STR_UINTIP) == A.value) {
alert(ptui_str(STR_NO_UIN));
A.focus();
return false
&&& A.value =
ptui_trim(A.value);
(!ptui_checkQQUin(A.value)) {
alert(ptui_str(STR_INV_UIN));
A.focus();
A.select();
return false
&&& if (D.value
alert(ptui_str(STR_NO_PWD));
D.focus();
return false
&&& if (E.value
if (!isLoadVC) {
&&&&&&&&&&&
loadVC(true);
&&&&&&&&&&&
g_submitting =
&&&&&&&&&&&
return false
alert(ptui_str(STR_NO_VCODE));
&&&&&&&&&&&
} catch(C) {}
if (!g_loadcheck) {
&&&&&&&&&&&
ptui_reportAttr(78028)
&&&&&&&&&&&
ptui_reportAttr(78029)
return false
(E.value.length != 4) {
alert(ptui_str(STR_INV_VCODE));
E.focus();
E.select();
return false
D.setAttribute("maxlength", "32");
ajax_Submit();
ptui_reportNum(g_changeNum);
&&& g_changeNum
&&& return
我们注意最后有一句ajax_Submit,前面一大串别看了统统都没用。
继续ajax_Submit函数。
function ajax_Submit() {
&&& var D =
&&& var E =
document.forms[0];
&&& var B =
&&& for (var A =
0; A & E. A++) {
if (E[A].name == "fp" || E[A].type == "submit") {
&&&&&&&&&&&
if (E[A].name == "ptredirect") {
&&&&&&&&&&&
g_ptredirect = E[A].value
if (E[A].name == "low_login_enable"
&& (!E[A].checked)) {
&&&&&&&&&&&
&&&&&&&&&&&
if (E[A].name == "low_login_hour"
&& (!D)) {
&&&&&&&&&&&
if (E[A].name == "webqq_type" &&
(!E[A].checked)) {
&&&&&&&&&&&
B += E[A].
if (t_appid == g_appid && E[A].name
== "u" && E[A].value.indexOf("@")
isNaN(E[A].value)) {
&&&&&&&&&&&
B += "@" + E[A].value + "&";
&&&&&&&&&&&
if (E[A].name == "p") {
&&&&&&&&&&&
var F = "";
&&&&&&&&&&&
F += E.verifycode.
&&&&&&&&&&&
F = F.toUpperCase();
&&&&&&&&&&&
B += md5(md5_3(E.p.value) + F)
&&&&&&&&&&&
if (E[A].name == "u1" || E[A].name == "ep") {
&&&&&&&&&&&&&&&
B += encodeURIComponent(E[A].value)
&&&&&&&&&&&
&&&&&&&&&&&&&&&
B += E[A].value
&&&&&&&&&&&
"fp=loginerroralert";
&&& var C =
document_createElement_x_x("script");
&&& C.src =
E.action + "?" + B;
document.cookie = "login_param=" + encodeURIComponent(login_param)
+ ";domain=ui.ptlogin2." + g_domain + ";path=/";
document.body.a(C);
&&& return
大家注意看我标红了的文字,这段就是对密码的处理方法了,将这段代码注释一下,方便大家看懂。
&&& var F =
F += E.verifycode.//取出验证码
F = F.toUpperCase();//转换为大写
B += md5(md5_3(E.p.value) +
F)//将密码明文用MD5算法连续哈希3次之后,加上验证码再哈希一次。
如是我们得到了QQ发送密码的方式即将密码明文用MD5算法连续哈希3次之后,加上验证码再哈希一次,再知道发送的URL和服务器地址,就可以进行登陆了。
好了,JavaScript分析完了,我们掌握了登陆所需的足够信息,下一篇我们就讲,如何模拟客户端进行登陆。
************************************************************************************************************************************************************************************************************
【登陆准备-信息发送方式
06:10:52】
刚刚发现腾讯修改了校友网(朋友网)登陆页面的代码,把登陆窗口的地址藏在js文件中去了,因此上篇文章中讲的部分东西就过时了,但是思路还是这个思路,我还是用别的办法找到了所需的信息,大家按照我的思路好好看看javascript代码,待会我还是会告诉大家如何找到发送的完整URL。
上一篇文章分析了腾讯校友登陆页面的JavaScript代码,掌握了登陆所需的足够信息,其实信息掌握的并不全,我疏忽了,细心的朋友肯定会问:“现在才知道密码的处理方式,我们是不是还不知道用户名和密码的发送方式?”是的,我们需要向服务器发送一个完整的URL,现在我们不知道URL是怎么组成的,就无法向服务器发送登陆请求。
下面我们就说如何找到腾讯家的URL。
第一步还是像上篇文章那样,找到文件comm.js,由于腾讯改了js的代码,所以我还是说一下新的方法好了。
我们先来到朋友网登陆首页,用浏览器查看本页源文件,发现不能像以前那样找到iframe的地址了,本页有关iframe的代码如下:
src="about:blank" width="356" height="138" frameborder="0"
scrolling="no"allowTransparency="true"
style="margin-top:30"&
iframe的src那里是"about:blank"。
仔细查看该页的源文件,可以发现如下三行:
这三个js文件一定有内容,下载下来看看。
先看BMindexLogin.js,发现里面有个initLogin()的函数,
function initLogin() {
&var ptlogin_base_domain=DOMAINS.ROOT;
ptlogin='http://ui.ptlogin2.'+ptlogin_base_domain+'/cgi-bin/login?appid=&qlogin_jumpname=&hide_title_bar=1&s_url=http://'+DOMAINS.MAIN+'/index.php?mod=login2&act=qqlogin&self_regurl=http://'+DOMAINS.REG+'/emailreg.html&css=http://'+DOMAINS.MAIN+'/asset/login.css';
&var set_username_label=function () {
window.frames['login_frame'].document.getElementByIdx_x_x('label_uin').innerHTML='Email/QQ帐号:';
window.frames['login_frame'].document.getElementByIdx_x_x('label_pwd').innerHTML='密码:';
& catch(e)
iframe=document.getElementByIdx_x_x('j_loginFrame');
&iframe.src=
&if(iframe.attachEvent) {
iframe.attachEvent("onload",set_username_label);
& iframe.onload=set_username_
&var query=window.location.
&if(query&&query.length&10&&query.indexOf('act=logout')==-1&&query.indexOf('mod=login')==-1)
m=query.match(/\?([^&]{
&& var ref=(m[1]);
&& if(ref.indexOf('ref=')===0)
ref=ref.substr(4);
ref=ref.replace(/\&/gi,'&');
document.cookie='ref='+ref+';domain='+DOMAINS.COOKIE_DOMAIN;
document.cookie='ref=domain='+DOMAINS.COOKIE_DOMAIN;
&var frag=window.location.
&if(frag&&frag.indexOf('qqreg=1')!=-1)
& reg_by_qq();
红色的字体就是给iframe的src赋值语句,蓝色的字体就是我们要找的iframe的地址了。但仔细一看,这个地址还不能直接复制到地址栏,因为里头有一些DOMAINS.MAIN之类的东西,没事,我们去另两个js文件找,在Mcommontmp.js里,查找DOMAINS,记得区分大小写,因为貌似有很多domains,于是我们找到如下赋值语句:
window.DOMAINS={
COOKIE_DOMAIN:'',MAIN:'',HOME:'home.',REG:'reg.',FEED:'feed.',APP:'app.',API:'api.',ROOT:'qq.com',IMGCACHE:'',OFFICE:'',SHARE:'share.',PROFILE:'profile.'
把这些东西替换到我们之前找到的URL中的相应位置,然后就可以复制到IE地址栏,点击回车,就出现了我们上篇文章中找到的登陆窗口,查看本页源文件,找到
讲得有点跳跃性,这些都是上篇讲过的东西,所以就没讲得太详细。
找到ajax_submit,里头有这么一句:
C.src=E.action+"?"+B;
一般URL都是xxx+?+参数的格式,因此我们有理由猜测这句就是我们要找的登陆URL。有人会问,里头的E是什么,B又是什么,如果大家仔细看JavaScript文件,就会知道,E就登陆时要提交的表单,B就是登陆时要提交的参数。我们在回到登陆窗口的源文件,不是,是我们从js文件中找到的那个,可以在form里看到,action=/login,至于参数,大家就只能在ajax_submit里面根据程序逻辑把参数一个一个的拼起来,没有捷径,除了看我拼好的,我也是一点一点拼的,拼好就是下面这个样子:
&"u=" + 您的QQ号 + "&p=" + 您的密码 +
"&verifycode=" + 验证码 +
"&aid==/index.php?mod=login&adtag=from_index&h=1&ptredirect=1&ptlang=2052&from_ui=1&dumy=&fp=loginerroralert"
这串是我刚刚拼好的,以后腾讯肯定还要改,大家有空自己拼一下吧,实在懒就算了,我这个暂时还能用。
现在用户名和密码的处理方式和发送方式都知道了,心急的朋友可能会问:“是不是就可以登陆了?”。
***是不能,因为还要验证码。我们登陆时,有时需要一个验证码,有时又不需要。对于验证码,有种简单的处理方式,就是每次登陆都要求输入,一定不会有错的,就是用起来麻烦点,如果想做得完美点,就可以像腾讯家一样自动检查一下,检查通过就不需要输入了,这样也可以,就是写程序的时候麻烦一点。
好我不?嗦了,下面就说说腾讯家是如何检查是否需要验证码。
所有都在comm.js里面,有一个ptui_needVC函数,找到这个函数,代码如下:
function ptui_needVC(C,D) {
&if(t_appid==D) {
if((C.indexOf("@")&0)&&isNaN(C))
&& C="@"+C
&}var B="";
&if(pt.isHttps) {
& ptui_checkVC("1","");
B="http://ptlogin2."+g_domain+"/check?uin="+C+"&appid="+D+"&r="+Math.random()
&}var A=document_createElement_x_x("script");
&g_imgTime=new Date();
&document.body.a(A);
&g_loadcheck=
红色的字就是URL了,这个比较直观,不用拼参数了,g_domain可以在登陆窗口的页面源文件中找到,
var g_domain = ""
C就是QQ帐号,D也可以在登录窗口的页面源文件中找到,
var g_appid =
Math.random()是JavaScript本身的一个函数,函数功能是取0到1之间的一个随机数。
把以上内容嵌进去就是检查是否需要验证码的URL了。
如果需要验证码的话,还需要获取验证码的图片,获取方法都可以在comm.js中找到。找到函数loadVC,函数如下:
function loadVC(A) {
&if(isLoadVC==A&&(lastUin==g_uin))
&}lastUin=g_
&isLoadVC=A;
&if(A==true) {
& var B=$("imgVerify");
& var F=g_
if((g_appid==t_appid)&&isNaN(g_uin)&&(g_uin.indexOf("@")&0))
&& F="@"+g_uin
E="/getimage?aid="+g_appid+"&r="+Math.random()+"&uin="+F;
& if(g_https) {
&& E="."+E
E="http://captcha."+g_domain+E+"&vc_type="+vc_type
& }var D=new Date();
& B.src=E;
& $("verifyinput").style.display="";
& $("verifytip").style.display="";
& $("verifyshow").style.display="";
& ptui_notifySize("login");
&& $("p").focus()
& }catch(C) {
& $("verifyinput").style.display="none";
& $("verifytip").style.display="none";
& $("verifyshow").style.display="none";
& ptui_notifySize("login");
&& $("p").focus()
& }catch(C) {
红色的字就是获取的URL了,g_domain前面讲过是,至于vc_type,是由ptui_needVC函数返回的,其实也可以不附加vc_type,整个URL拼起来就像这个样子:"/getimage?aid="+g_appid+"&r="+Math.random()+"&uin="+您的QQ号+"&vc_type="+vc_Type。
g_appid和Math.random()上面都说过是什么,大家找找吧,我每次都说一遍好累啊。
好了,验证码也知道怎么检查和获取了,至此,JavaScript全部分析完了,上篇也说分析完了,哈哈,不过这次是真的啦,下篇进入实战部分了,是不是好激动的?我会先告诉大家使用一个工具,非常给力的网络抓包工具--Wireshark。
******************************************************************************************************************************************************************************************************
&!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&
xmlns="http://www.w3.org/1999/xhtml"&&head&
&meta http-equiv="Content-Type" content="text/
charset=UTF-8"&
&script type="text/javascript"&
var g_time={};g_time.time3=new
Date().getTime();(function(){window.onerror=function(E,B,A){if(location.protocol=="https:"){return
}var C=document_createElement_x("img");B=B||location.var
D=encodeURIComponent(E+"|_|"+B+"|_|"+A+"|_|"+window.navigator.userAgent);C.src="/cgi-bin/js_report?bid=110&mid=195279&msg="+D+"&v="+Math.random();C=null}})();document.domain="qq.com";var
g_cdn_js_fail=var
pt={};pt.str={no_uin:"您还没有输入帐号!",no_pwd:"您还没有输入密码!",no_vcode:"您还没有输入验证码!",inv_uin:"请输入正确的QQ帐号!",inv_vcode:"请输入完整的验证码!",switch_qlogin:"切换到快速登录模式",switch_normal:"使用其他号码登录",qlogin_no_uin:"系统检测到您机器上QQ未启动或已被锁定。请您先登录QQ或解锁后再使用本功能。",qlogin_other_err:"快速登录失败,请您返回重试或切换到普通登录模式。",qlogin_select_offline:"您所选择号码对应的QQ已经失效,请检查该号码对应的QQ是否已经被关闭。",qlogining:"正在登录中,请稍候……",yjfk:"意见反馈",h_q_login_qr:"二维码登录",h_pt_login_qr:"帐号密码登录",h_pt_login:"其他帐号登录",h_other_login:"帐号登录",h_uintip:"QQ号码/手机/邮箱",h_uintip_focus:"QQ号码/手机/邮箱",h_passtip:"密码",h_passtip_focus:"密码",h_codetip:"验证码",h_codetip_focus:"输入右图字符不区分大小写",h_login_tip:"请登录新增帐号",h_loading_wording:"登录中",h_input_err:"您输入有误,请重试",pt_qr_app:"手机QQ空间",pt_qr_link:"/download.html"};pt.ptui={s_url:"",proxy_url:"",no_drop_domain:"0",jumpname:encodeURIComponent(""),mibao_css:encodeURIComponent(""),qlogin_param:"",defaultUin:"",href:"http\x3A\x2F\x2Fui.\x2Fcgi-bin\x2Flogin\x3Fhide_title_bar\x3D1\x26low_login\x3D0\x26qlogin_auto_login\x3D1\x26no_verifyimg\x3D1\x26link_target\x3Dblank\x26appid\x3D\x26style\x3D12\x26target\x3Dself\x26s_url\x3Dhttp\x253A\x2F\\x2Fqzone\x2Fv5\x2Floginsucc.html\x3Fpara\x3Dizone\x26pt_qr_app\x3D\x25CA\x25D6\x25BB\x25FAQQ\x25BF\x25D5\x25BC\x25E4\x26pt_qr_link\x3Dhttp\x253A\x2F\\x2Fdownload.html\x26self_regurl\x3Dhttp\x253A\x2F\\x2Fqzone\x2Fv6\x2Freg\x2Findex.html\x26pt_qr_help_link\x3Dhttp\x253A\x2F\\x2Fdownload.html",login_sig:"xqm9GIe69dDkKioh9Ctv8GyzKe-FESJFQVkk3LW4hxXazo3dISW3zXqCfMkEfd4j",clientip:"21c4",serverip:"caad0aab4c0da771",version:"",jiechiVersion:"0",ptui_version:encodeURIComponent("10051"),isHttps:false,cssPath:"/ptlogin/v4/style/12",jsPath:"/ptlogin/ver/10051/js",domain:encodeURIComponent("qq.com"),appid:encodeURIComponent(""),lang:encodeURIComponent("2052"),style:encodeURIComponent("12"),qtarget:encodeURIComponent("-1"),low_login:encodeURIComponent("0"),daid:encodeURIComponent(""),regmaster:encodeURIComponent(""),enable_qlogin:"1",pt_size:"0",noAuth:"0",target:encodeURIComponent("_self"),csimc:encodeURIComponent("0"),csnum:encodeURIComponent("0"),authid:encodeURIComponent("0"),auth_mode:encodeURIComponent("0"),pt_qzone_sig:"0"};
&style type="text/css"
id="main_css"&
html{overflow:}body{font-family:Tahoma,Verdana,Arial,宋体;font-size:12margin:0;}ul{padding:0;margin:0;}ul
li{list-style-type:}a{text-decoration:}a:hover{text-decoration:}input[type="text"]:focus,input[type="password"]:focus{outline:}input::-ms-clear{display:}.uncheck{background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -74px
-163}.checked{background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -92px
-163}.qlogin{display:}.login,.login_no_qlogin{margin:0
width:418border:2px solid
#position:}.header{height:50border-bottom:1px solid
#e2e2e2;position:font-family:"Hiragino Sans
GB","微软雅黑";}.header
.switch{height:45position:left:70bottom:0;font-size:16}.header
.switch #switch_qlogin{margin-right:110}.header .switch
.switch_btn{color:#999;display:inline-height:45line-height:45outline:*hide-focus:expression_r(this.hideFocus=true);}.header
.switch_btn_focus{color:#333;display:inline-height:45line-height:45outline:*hide-focus:expression_r(this.hideFocus=true);}.header
.switch .switch_btn:hover{color:#333;text-decoration:}.header
.switch .switch_btn_focus:hover{text-decoration:}.header
.switch_bottom{position:bottom:-1border-bottom:2px
solid #848484;}.header
.close{width:47height:20float:background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -221px
-126outline:*hide-focus:expression_r(this.hideFocus=true);}.header
.close:hover{background-position:-221px -151}.login_no_qlogin
.header{border:height:40}.login_no_qlogin .header
.switch{height:40position:left:20top:10font-size:22}.login_no_qlogin
.header .switch .switch_bottom{display:}.login_no_qlogin
.header .switch .switch_btn{display:}.login_no_qlogin .header
.switch_btn_focus{color:#333;cursor:text-decoration:display:inline-height:30line-height:30}.web_login{width:418position:padding-bottom:65}.web_login
.tips{height:50width:270position:margin:0
z-index:11;}.web_login
.error_tips{text-align:padding:5border:1px solid
#dad699;background:#f9f5c7;display:position:bottom:-2border-radius:2}.web_login
.error_tips
.error_logo{position:left:3height:18line-height:18width:18background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat 0 -162}.web_login .error_tips
.err_m{display:inline-padding-left:20line-height:18color:#434343;vertical-align:text-align:}.web_login
.operate_tips{display:padding:8border:1px solid
#dad699;background:#f9f5c7;position:bottom:-3border-radius:2}.web_login
.operate_tips .tips_link{color:#f39800;}.web_login .operate_tips
.down_row{position:bottom:-6_bottom:-7left:20width:12height:6background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -162px -161font-size:1}.web_login .operate_tips
.operate_content{width:100%;text-align:}.web_login
.loading_tips{text-align:height:24display:position:top:10width:274}.web_login
.login_form{width:272margin:0}.web_login
.inputOuter{width:272height:42background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -1px -1}.web_login
.inputOuter_focus{width:272height:42background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -1px -45}.web_login
.inputstyle{width:258position:top:2left:2height:18padding:11px
10line-height:18border:background:color:#333;font-family:Verdana,Tahoma,Afont-size:16ime-mode:}.web_login
.input_tips,.web_login
.input_tips_focus{position:top:13+top:15left:13font-size:14line-height:16color:#cursor:}.web_login
.input_tips_focus{color:#}.web_login
.uinArea{height:55position:z-index:10;}.web_login
.uin_del{width:21height:21cursor:position:right:15top:10background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -116px -160display:}.web_login
.uin_del:hover{background-position:-139px -160}.web_login
.email_list{border:1px solid
#70c2background:#width:266position:z-index:10;display:border-radius:1padding:1left:2}.web_login
.email_list li,.web_login .email_list
p{height:31line-height:31margin:0;overflow:padding-left:10}.web_login
.email_list p{height:16line-height:10}.web_login .email_list
.hover{background:#cbe2}.web_login
.pwdArea{height:55position:z-index:3;}.web_login
.lock_tips{position:top:32left:-15height:16padding:5text-align:display:border:1px
solid #dad699;background:#f9f5c7;border-radius:2}.web_login
.lock_tips
.lock_tips_row{position:top:-6left:25width:12height:6background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -162px -168}.web_login
.verifyArea{display:height:120position:}.web_login
.verifyinputArea{height:55}.web_login
.verifycode{color:#333;font-size:16}.web_login
.verifyimgArea{position:height:55cursor:}.web_login
.verifyimgArea
.verifyimg{height:55width:150position:left:0;}.web_login
.verifyimgArea
.verifyimg_tips{position:left:165top:15color:#000;}.web_login
.submit{position:height:40}.web_login
.login_button{position:left:0;outline:*hide-focus:expression_r(this.hideFocus=true);}.web_login
.login_button
.btn{width:115height:35line-height:35border:font-size:18font-weight:color:#cursor:background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat 0 -90}.web_login .login_button:hover
.btn{background-position:-116px -90}.web_login
.login_button:hover{text-decoration:}.web_login
.low_login{position:left:140top:10}.web_login
.low_login .uncheck{float:height:18width:18}.web_login
.low_login .checked{float:height:18width:18}.web_login
.low_login
.low_login_wording{height:16line-height:16line-height:18px\9;cursor:margin-left:5}.bottom{height:16margin-bottom:8width:300position:bottom:0;right:10text-align:font-size:12}.bottom
.link{color:#666;}.bottom .dotted{color:#margin:0
.vip_link:hover{color:#f00;}.web_qr_login{position:height:265overflow:}.web_qr_login
.web_qr_login_show{position:top:0;}.noscript{background:none
repeat scroll 0 0 #F9F5C7;border:1px solid
#DAD699;display:inline-height:24line-height:24padding:5text-align:}.hide{display:}.qrlogin{position:width:418height:265font-size:14}.authLogin{background:none
repeat scroll 0 0
#FFF;height:315position:top:0;width:100%;z-index:9999;display:}.authLogin
.authHeader{height:50border-bottom:1px solid
#e2e2e2;position:font-family:"Hiragino Sans
GB","微软雅黑";}.authLogin .authHeader
.title{position:top:5left:20line-height:30height:30font-size:22}.authLogin
.authTips{height:30}.authLogin
.authInfo{text-align:}.authLogin
.authWording{text-align:color:#A0A0A0;line-height:20height:35}.authLogin
.face{display:inline-height:120width:120text-align:position:cursor:outline:}.authLogin
.face:focus{outline:}.authLogin
.face:hover{border:text-decoration:}.authLogin .face
img{width:80height:80position:top:10left:19border:}.authLogin
.img_out{width:88height:88position:top:4left:14background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -0px -182}.authLogin .face
.img_out_focus{width:88height:88position:top:5left:15background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -91px -183}.authLogin .face:hover
.img_out{width:88height:88position:top:5left:15background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -91px -183}.authLogin .face
.nick{display:inline-text-align:position:top:100left:0;height:20line-height:18vertical-align:width:100%;overflow:color:#6f7479;font-family:Tahoma,\u5fae\u8f6f\u96c5\u9ed1,\u5b8b\u4f53,Verdana,Arial,sans-}.authLogin
.red{color:#f00;}.authLogin .face
.vip_logo{width:26height:12position:top:12left:21background:url(/ptlogin/v4/style/11/images/icon_3.png)
no-repeat -236px -92}.authLogin .face
.uin{display:}.authLogin .face:hover
.uin{display:background:#000;height:20width:80line-height:20position:left:20top:72filter:Alpha(opacity=50);opacity:.5;color:#border-radius:0
0 4px 4}.authLogin .face
.face_mengban{background:#000;width:80height:80position:top:10left:20filter:Alpha(opacity=30);opacity:.3;}.authLogin
.cancleAuthOuter{margin-top:10text-align:}.authLogin
.cancleAuth{display:inline-height:14border:1px solid
#d3d3d3;padding:3cursor:color:#888;text-decoration:}.authLogin
.bottom{position:bottom:-2left:0;width:100%;height:25}.authLogin
.low_login{position:bottom:0;left:10}.authLogin
.low_login .uncheck{float:height:18width:18}.authLogin
.low_login .checked{float:height:18width:18}.authLogin
.low_login
.low_login_wording{height:16line-height:16line-height:18px\9;cursor:margin-left:5}.authLogin
.feedback_authLogin{position:bottom:0;right:10}
.login,.login_no_qlogin{
background-color:#
.header .logo,.authHeader .logo{
background:url(/ptlogin/v4/style/11/images/icon_3.png)
background-position:0 -280
&link href="login_files/h_qr_login_1.css"
rel="stylesheet"
type="text/css"&&/head&
&div class="login_no_qlogin" id="login"
style="border:0"&
&div id="header"
class="header"&
&div class="switch"
id="switch"&
&&&&&&&&&&&
&a class="switch_btn" id="switch_qlogin"
href="javascript:void(0);"
tabindex="7"&快速登录&/a&
&&&&&&&&&&&
&a class="switch_btn_focus" id="switch_login"
href="javascript:void(0);"
tabindex="8"&帐号登录&/a&
&&&&&&&&&&&
&div style="position: width: 88 left:
0" class="switch_bottom"
id="switch_bottom"&&/div&
&!--快速登录--&
&div style="display:" class="qlogin"
id="qlogin"&&/div&
&!--快速登录end--&
&!--普通登录和二维码登录--&
&!--二维码登录切换--&
&div id="qrswitch" style="display:"
class="qrswitch"&
&&&&&&&&&&&&&&&
&a class="qrswitch_logo" id="qrswitch_logo"
href="javascript:void(0)" draggable="false"
title="二维码登录"&&/a&
&!--二维码登录切换end--&
&div id="web_qr_login" style="display:
height: 265" class="web_qr_login"&
&!--为了动画--&
&div class="web_qr_login_show"
id="web_qr_login_show"&
&&&&&&&&&&&
&!--普通登录--&
&&&&&&&&&&&
&div class="web_login"
id="web_login"&
&&&&&&&&&&&&&&&
&div class="tips" id="tips"&
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&
&noscript id="noscript_area"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
class="noscript"&您的浏览器脚本被禁用了,&a
href="/assistant/noscript.html" target="_blank" style="color:
#29B1F1"&查看启用方法&/a&&/span&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&img id="noscript_img" style="width:1height:1"
src="/cgi-bin/report?id=301240" /&
&&&&&&&&&&&&&&&&&&&&&&&
&/noscript&
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&
&div style="display:" class="error_tips"
id="error_tips"&
&&&&&&&&&&&&&&&&&&&&&&&
&span class="error_logo"
id="error_logo"&&/span&
&&&&&&&&&&&&&&&&&&&&&&&
&span class="err_m"
id="err_m"&&/span&
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&
&div style="display:" class="operate_tips"
id="operate_tips"&
&&&&&&&&&&&&&&&&&&&&&&&
&span class="operate_content"&
&&&&&&&&&&&&&&&&&&&&&&&
手机号码也可登录哦,&a class="tips_link" id="bind_account"
href="javascript:void(0);"&登录个人中心绑定&/a&
&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&
&span class="down_row"&
&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&
&div style="display:" class="loading_tips"
id="loading_tips"&
&&&&&&&&&&&&&&&&&&&&&&&
id="loading_wording"&登录中&/span&
&&&&&&&&&&&&&&&&&&&&&&&
&img src="login_files/load.gif" id="loading_img"
place_src="/ptlogin/v4/style/0/images/load.gif"
align="absmiddle"&
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&
&div class="login_form"&
&&&&&&&&&&&&&&&&&&&
&form id="loginform"
name="loginform" action="" method="post" target="_self"
style="margin:0"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div class="uinArea"
id="uinArea"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&label style="display:" class="input_tips"
id="uin_tips"
for="u"&QQ号码/手机/邮箱&/label&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div class="inputOuter"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&input class="inputstyle" id="u" name="u"
tabindex="1" type="text"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&a style="display:" class="uin_del"
id="uin_del"
href="javascript:void(0);"&&/a&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&ul style="display:" class="email_list"
id="email_list"&&/ul&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div class="pwdArea"
id="pwdArea"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&label style="display:" class="input_tips"
id="pwd_tips"
for="p"&密码&/label&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div class="inputOuter"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&input class="inputstyle password" id="p" name="p"
value="" maxlength="16" tabindex="2"
type="password"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div style="display:" class="lock_tips"
id="caps_lock_tips"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&span class="lock_tips_row"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
大写锁定已打开
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div style="display:" class="verifyArea"
id="verifyArea"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div class="verifyinputArea"
id="verifyinputArea"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&label class="input_tips" id="vc_tips"
for="verifycode"&验证码&/label&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div class="inputOuter"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&input name="verifycode" class="inputstyle
verifycode" id="verifycode" maxlength="5" tabindex="3"
type="text"&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&div class="verifyimgArea"
id="verifyimgArea"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&img class="verifyimg" id="verifyimg"
title="看不清,换一张"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&a tabindex="4" href="javascript:void(0);"
class="verifyimg_tips"&看不清,换一张&/a&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&
&div class="submit"&
&&&&&&&&&&&&&&&&&&&&&&&
&a class="login_button"
href="javascript:void(0);"&
&&&&&&&&&&&&&&&&&&&&&&&&&&&
&input tabindex="6" value="登 录" class="btn"
id="login_button" type="submit"&
&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&
&input name="aid" value=""
type="hidden"&
&input name="u1"
value="/qzone/v5/loginsucc.html?para=izone"
type="hidden"&
&input name="fp" value=""
type="hidden"&
&input name="h" value="1"
type="hidden"&
&input name="ptredirect" value="0"
type="hidden"&
&input name="ptlang" value="2052"
type="hidden"&
&&&&&&&&&&&&&&&&&&&&&&&
&input name="from_ui" value="1"
type="hidden"&
&&&&&&&&&&&&&&&&&&&&&&&
&input name="dumy" value=""
type="hidden"&
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&
&div style="display:" class="bottom"
id="bottom_web"&
&&&&&&&&&&&&&&&&&&&
&a href="/ptui_forgetpwd"
class="link" id="forgetpwd"
target="_blank"&忘了密码?&/a&
&&&&&&&&&&&&&&&&&&&
class="dotted"&|&/span&
&&&&&&&&&&&&&&&&&&&&
&a href="/qzone/v6/reg/index.html"
class="link"
target="_blank"&注册空间&/a&
&&&&&&&&&&&&&&&&&&&
class="dotted"&|&/span&
&&&&&&&&&&&&&&&&&&&
&a class="link" id="feedback_web"
href="/write.shtml?guest=1&fid=713&SSTAG=hailunna"
target="_blank"&意见反馈&/a&
&&&&&&&&&&&&&&&
&&&&&&&&&&&
&&&&&&&&&&&
&!--普通登录end--&
&&&&&&&&&&&
&&&&&&&&&&&
&!--二维码登录--&
&&&&&&&&&&&
&div style="visibility:" class="qrlogin"
id="qrlogin"&
&&&&&&&&&&&&&&&
&div class="qr_step"
id="qrlogin_step1"&
&&&&&&&&&&&&&&&&&&&
&div class="qr_tips"&
&&&&&&&&&&&&&&&&&&&
一扫即上,用&a class="qr_link"
href="/download.html"
target="_blank"&手机QQ空间&/a&扫描二维码安全登录
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&
class="qrlogin_bg"&&/div&
&&&&&&&&&&&&&&&&&&&
&img class="qrlogin_img"
id="qrlogin_img"&
&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&
&div class="qr_step"
id="qrlogin_step2"&
&&&&&&&&&&&&&&&&&&&
&div class="qr_tips"&
&&&&&&&&&&&&&&&&&&&
扫描成功,请在手机上确认是否授权登录
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&
&div class="kao"&
&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&
&div class="bottom"
id="bottom_qr"&
&&&&&&&&&&&&&&&&&&&
&a href="/download.html"
class="link" id="qrlogin_help"
target="_blank"&二维码使用帮助&/a&
&&&&&&&&&&&&&&&&&&&
class="dotted"&|&/span&
&&&&&&&&&&&&&&&&&&&
&a href="/qzone/v6/reg/index.html"
class="link"
target="_blank"&注册空间&/a&
&&&&&&&&&&&&&&&&&&&
class="dotted"&|&/span&
&&&&&&&&&&&&&&&&&&&
&a class="link" id="feedback_qr"
href="/write.shtml?guest=1&fid=713&SSTAG=hailunna"
target="_blank"&意见反馈&/a&
&&&&&&&&&&&&&&&
&&&&&&&&&&&
&&&&&&&&&&&
&!--二维码登录end--&
&&&&&&&&&&&
&!--showArea end--&
&!--二维码登录和普通登录--&
& &div style="display:"
class="bottom hide" id="bottom_qlogin"&
&a href="javascript:void(0);" class="link vip_link
hide" id="vip_link2"
target="_blank"&开通QQ会员&/a&
&span class="dotted hide"
id="vip_dot"&|&/span&
&a href="/qzone/v6/reg/index.html"
class="link"
target="_blank"&注册空间&/a&
class="dotted"&|&/span&
&a class="link" id="feedback_qlogin"
href="/write.shtml?guest=1&fid=713&SSTAG=hailunna"
target="_blank"&意见反馈&/a&
&!--授权登录--&
& &div id="authLogin"
class="authLogin"&
&div class="authHeader"
id="authHeader"&
class="logo"&&/div&
&span class="title"&
&&&&&&&&&&
&/span&&&&&
&div class="authTips"&
&div class="authWording"&
&&&&&&&&&&&
&span&点击头像,确认&/span&&span&腾讯业务&/span&
&div class="authInfo"&
&a class="face" id="auth_area" tabindex="1"
href="javascript:void(0);" draggable="false"
hidefocus="true"&
&&&&&&&&&&&
id="auth_face"&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&
&span id="auth_mengban"
class=""&&/span&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&
&span class="uin"
id="auth_uin"&&/span&&&&&&&&&&&&&&&&&
&&&&&&&&&&&
class="img_out_focus"&&/span&&&
&&&&&&&&&&&
&span class="nick"
id="auth_nick"&&/span&&&&&&&&&&&&&&&&&
&div class="cancleAuthOuter"
id="cancleAuthOuter"&
&a id="cancleAuth"
class="cancleAuth"&
&&&&&&&&&&&
使用其他帐号
&div class="bottom"&
&a class="link feedback_authLogin"
id="feedback_authLogin"
href="/write.shtml?guest=1&fid=713&SSTAG=hailunna"
target="_blank"&意见反馈&/a&
&div id="proxy"
class="hide"&&/div&
type="text/javascript"&g_time.time4=new
Date()-0;//html加载完成&/script&
&script type="text/javascript"
src="login_files/h_login_11.js"&&/script&
&script type="text/javascript"&
function loadScript(src,callback)
&&& var tag =
document_createElement_x("script");
&&& tag.onload =
tag.onreadystatechange = function() {
!this.readyState ||this.readyState === "loaded" || this.readyState
=== "complete") {
&&& if(typeof
callback=="function"){
callback();
&&& tag.onload =
tag.onreadystatechange =
tag.onerror=function(){
tag.onerror=
callback();
&&& tag.src =
document.getElementsByTagName_r("head")[0].a(tag);
//海伦娜 js拉取失败,重试一次,重试失败就把提交按钮disable
if(typeof(ptuiCB)=="undefined"){
window.g_cdn_js_fail=
&&& var imgAttr2
= new Image();
&&& imgAttr2.src
location.protocol+"//ui./cgi-bin/report?id=242325&union=256043";
serverJsPath="../js/"+pt.ptui.ptui_version+"/h_login_11.js?max_age=604800&ptui_identifier=000E9C63FC48CD779F54770B2B90FF9087E4";
loadScript(serverJsPath,function(){
if(typeof(ptuiCB)=="undefined"){
button=document.getElementByIdx_x("login_button");
button&&(button.disabled=true);
&&& imgAttr2.src
location.protocol+"//ui./cgi-bin/report?id=280504";
pt.preload.ptui_notifySize("login");//更新下页面大小
g_time.time5=new Date()-0;//js加载完成
src="login_files/ptui_ver.js"&&/script&&/body&&/html&
&!--参考资料
&script language="javascript"&var
g_begTime=new Date();&/script&
type="text/css"&
&u{text-decoration:white-space:color:#097FD1}
&body{font-family:Tahoma,Verdana,Arial,宋体;font-size:12background:#margin:0;}.inputstyle{border:1px
solid #7F9DB9;width:190height:14pa
dding:5margin:0;font-size:14color:#808080;}h1,h2,h3,h4{padding:0;margin:0;}a{color:#097fd1;}a:link,a:visited,a:active{color:#097fd1;text-decoration:}a:hover{color:#000;text-decoration:}a.b:{color:#666;text-decoration:}a.b:link,a.b:visited,a.b:active{color:#666;text-decorati
on:}a.b:hover{color:#097fd1;text-decoration:}#login{float:width:370padding:0
0 5px 0;}#login
h4{background:url(/ptlogin/v4/style/0/images/icons.gif)
no-repeat 0
0;height:21font-weight:font-size:12padding:7px 0 0
30border-bottom:1px solid #438
}#login h4 .btn_close,#login h4
.btn_help{float:margin-right:5cursor:width:17height:17border:0;}#login
.btn_close{background:url(/ptlogin/v4/style/0/images/icons.gif)
no-repeat 0 -284margin-top:-1}#login h4
.btn_help{background:url(http://imgcach
/ptlogin/v4/style/0/images/icons.gif) no-repeat 0
-308}#login ul{padding:12px 0 11px 0;margin:0;}#login ul
li{list-style-type:padding:7px 0;}#login ul li
span{float:text-align:padding-right:5padding-top:7}#login
ul li span{font-size:12color:#535353;}#login
.about{margin-left:110_margin-left:115padding-top:3clear:}#login
#verifytip{color:#808080;}#login em{color:#F00;padding:0
3font-style:}#login p{padding:8px 15px 12px
32margin:0;font-size:12color:#535353;}#login label{padding:0
0 0 8color:#535353;position:margin-top:10}#login
.error{margin:15px
30background:url(/ptlogin/v4/style/0/images/icons.gif)
no-repeat 0 -396padding:31px 0 30px
65line-height:20}#login #verifytip{padding:0 0 7px 0;}#login
#verifyshow{padding:0;}#login
.low_login{margin-top:0;}.login_button{margin:0padding:0 0 0
88float:}.loginbtn{border:0;background:url(/ptlogin/v4/style/0/images/icons.gif)
no-repeat 0
-160color:#204497;width:68height:27cursor:}.btn{border:0;background:url(/ptlogin/v4/style/0/images/icons.gif)
no-repeat -102px
-130color:#2473A2;width:103height:28cursor:font-weight:font-size:14}.loginbtn_g{border:0;background:url(/ptlogin/v4/style/0/images/icons.gif)
no-repeat 0
-30color:#2473A2;width:126height:33cursor:font-weight:}.btnlong{border:0;background:url(/ptlogin/v4/style/0/images/icons.gif)
no-repeat 0
-143color:#2473A2;width:125height:31cursor:font-weight:}.lineright{text-align:margin:0
8px 0 0;line-height:18height:18}.linemid{padding:10px 8px 0
30color:}.linecenter{text-align:padding:10px 8px 0
0;}.hi_style{height:200}.list_name{width:260margin:0
text-align:padding-top:20}#lowlogin_tips{color:padding-right:10}.err_m{display:padding-left:26px!color:#f00;}
&background-color:#
language="javascript"&
&var str_uintip =
"&请输入帐号&";
&var str_passtip =
"&请输入密码&";
&var str_codetip =
"&请输入验证码&";
&var str_no_uin = "您还没有输入帐号!";
&var str_no_pwd = "您还没有输入密码!";
&var str_no_vcode = "您还没有输入验证码!";
&var str_inv_uin = "请输入正确的QQ帐号!";
&var str_inv_vcode = "请输入完整的验证码!";
&var str_switch_qlogin = "切换到快速登录模式";
&var str_switch_normal = "使用其他号码登录";
&var str_qlogin_no_uin =
"系统检测到您机器上QQ未启动或已被锁定。请您先登录QQ或解锁后再使用本功能。";
&var str_qlogin_other_err =
"快速登录失败,请您返回重试或切换到普通登录模式。";
&var str_qlogin_select_offline =
"您所选择号码对应的QQ已经失效,请检查该号码对应的QQ是否已经被关闭。";
&var str_qlogining = "正在登录中,请稍候……";
&var g_version=;
&var g_qtarget="-1";
g_href="http://ui./cgi-bin/login?link_target=blank&target=self&appid=3000701&qlogin_jumpname=vipcomm&f_url=loginerroralert&qlogin_auto_login=0&s_url=/club/portal_new/redirect.html?jump_url=http%3A//lol./forum.php&qlogin_param=jump_url=http%3A//lol./forum.php";
g_forget="/ptui_forgetpwd";
&var g_css = "";
&var g_ptcss = "";
&var g_jumpname = "vipcomm";
&var g_param =
"jump_url=http://lol./forum.php";
&var isLoadVC =
&var g_appid = 3000701;
&var g_uin = 0;
&var g_domain = "qq.com";
&var g_target = "_self";
&var g_https =
&document.domain="qq.com";
&var g_t="str_uintip}";
&var g_lang="2052";
&str_uintip="&请输入帐号&";
&function $(A){return
document.getElementByIdx_x(A)}var
preload={needSize:"",isIpad:false,init:function(){var
A=navigator.userAgent.toLowerCase();preload.isIpad=/ipad/i.test(A);preload.needSize=preload.getQuery("ptsize")},getQuery:function(B){var
A=window.location.search.match(new
RegExp("(?:/?|&)"+B+"=([^&]*)(?:&|$)"));return
!A?"":(A[1])}};preload.init();var isAbleSubmit=function
ptui_notifySize(D){try{obj=$(D);if(obj){width=1;height=1;if(obj.offsetWidth&0){width=obj.offsetWidth}if(obj.offsetHeight&0){height=obj.offsetHeight}var
B=window.location.hostname.replace(/ui\.ptlogin2\./i,"");var A=new
Date();A.setTime(A.getTime()+5*1000);if(preload.needSize){document.cookie="pt_size="+width+"-"+height+";domain="+B+";path=/;expires="+A.toGMTString()}if(parent.ptlogin2_onResize){parent.ptlogin2_onResize(width,height);window.scroll(0,10)}else{frameElement.width=frameElement.style.width=width+"px";frameElement.height=frameElement.style.height=height+"px";frameElement.style.visibility="hidden";frameElement.style.visibility="visible"}}}catch(C){}}var
g_speedArray=new Array();var
g_time={};g_time.time1=g_begTfunction
ptui_setSpeed(B){if(B&=0){return }var
A=g_speedArray.g_speedArray[A]=new Array(B,new
Date())}function
ptui_check_qlogin(){try{if(window.ActiveXObject){var J=new
ActiveXObject("SSOAxCtrlForPTLogin.SSOForPTLogin2");var
E=J.CreateTXSSOData();J.InitSSOFPTCtrl(0,E);var
B=J.CreateTXSSOData();var A=J.DoOperation(2,B);var
C=A.GetArray("PTALIST");var
G=C.GetSize();if(G&0){return
G}}else{if(navigator.mimeTypes["application/nptxsso"]){var
D=document_createElement_x("embed");D.type="application/nptxsso";D.style.width="0px";D.style.height="0px";document.body.a(D);var
I=D.InitPVANoST();if(I){var
F=D.GetPVACount();if(F&0){return
F}}}}}catch(H){return 0}return 0}var xuiFrame=var
curXui=var reloadweb=var q_function
qlogin_check(){q_clock=setInterval(B,200);var
A=50;document.cookie="ptui_qstatus=1;domain=ptlogin2."+g_domain+"path=/";function
B(){if(A==0){switchpage()}if(document.cookie.indexOf("ptui_qstatus=2")&-1){clearInterval(q_clock)}if(document.cookie.indexOf("ptui_qstatus=3")&-1){clearInterval(q_clock);switchpage()}A--}}function
loadxui(F){if(xuiFrame){$("qlogin").style.display="block";return
B=1;if(g_jumpname!=""){if(g_qtarget!=-1){B=parseInt(g_qtarget)}}else{switch(g_target){case"_self":B=0;case"_top":B=1;case"_parent":B=2;default:B=1}}var
E=(g_jumpname==""||g_jumpname=="jump")?encodeURIComponent("u1="+encodeURIComponent(document.forms[0].u1.value)):"";var
A=(/^(https)+/g.test(window.location+"")?"https":"http")+"://xui.ptlogin2."+g_domain+"/cgi-bin/q"+g_href.substring(g_href.indexOf("/cgi-bin/")+9,g_href.indexOf("?"))+"?domain="+g_domain+"&lang="+g_lang+"&qtarget="+B+"&jumpname="+g_jumpname+"&ptcss="+g_ptcss+"¶m="+encodeURIComponent((g_param?encodeURIComponent(g_param):E))+"&css="+g_css+"&mibao_css="+preload.getQuery("mibao_css")+"#"+(g_begTime-0);var
D=$("qlogin");var
C=136+28*((F&5?5:F)-1);D.innerHTML='&iframe
id="xui" name="xui" allowtransparency="true" scrolling="no"
frameborder="0" width="100%" height="'+C+'"
src="'+A+'"&';D.style.display="block";$("web_login").style.display="none";curXui=xuiFrame=qlogin_check()}}function
switchpage(){if(curXui){$("web_login").style.display="block";$("qlogin").style.display="none";$("switch").innerHTML='&a
style="cursor:"
onclick="switchpage();"&'+str_switch_qlogin+"&/a&";ptui_notifySize("login");if(typeof
(ptui_initFocus)!="undefined"){ptui_initFocus(document.forms[0])}curXui=clearInterval(q_clock)}else{$("qlogin").style.display="block";$("web_login").style.display="none";$("switch").innerHTML='&a
style="cursor:"
onclick="switchpage();"&'+str_switch_normal+"&/a&";curXui=qlogin_check();ptui_notifySize("login")}$("err_m").style.display="none"}function
ptui_onUserFocus(C,A){if(preload.isIpad){return }var
B=$(C);if(str_uintip==B.value){B.value=""}B.style.color=A}function
ptui_onUserBlue(C,A){if(preload.isIpad){return }var
B=$(C);if(""==B.value){B.value=str_B.style.color=A}};
&function loadweblogin(){
&if(typeof(ptui_setUinColor)=='undefined'){
&reloadweb =
&ptui_setUinColor('u', '#000000',
'#cccccc');
&$("loginform").verifycode.value="";
&function onSelectLoad(){
&var uNum=0;
(document.cookie.toLowerCase().indexOf("pt_qlogincode=5")&-1||(window.location+"").toLowerCase().indexOf("enable_qlogin=0")&-1||window.template==6){uNum=0;}else{uNum
= ptui_check_qlogin();}
&if (uNum & 0) {
&loadxui(uNum);
&$('label_unable_tips').innerHTML = '';
&$('switch').innerHTML = '&a
style="cursor:"
onclick="switchpage();"&使用其他号码登录&/a&';
&$('switch').style.display = 'block';
&loadweblogin();
&$('label_unable_tips').innerHTML = '';
&$('switch').style.display = 'none';
&ptui_setSpeed(1);
&ptui_notifySize("login");
&function onPrePageLoad(){
&var login_form = $("loginform");
&$("login_button").disabled=
&ptui_setDefUin(login_form, "");
&ptui_setSpeed(2);
reportTime4=0;try{if(location.hash){reportTime4=location.hash.substr(1,location.hash.length)};}catch(e){var
f = arguments.setTimeout(f,
50);}ptui_reportSpeed(g_begTime,reportTime4);g_time.time4=new
Date();webLoginReport();
&ptui_notifySize("login");
&if(!curXui){ptui_initFocus(login_form);}
&&/script&
&&div class="main" id="login"
&&div id="qlogin"
style="display:"&&/div&
id="web_login"&
&&form id="loginform"
name="loginform"
action="/login" method="post"
onsubmit="if(!isAbleSubmit){};return
ptui_onLoginEx(loginform, 'qq.com')" onreset="return
onFormReset(loginform)" target="_self"
style="margin:0"&
id="g_list"&
&&li id="err_m"
class="err_m"&&/li&
&&li id="g_u"&
id="label_uin"&QQ帐号:&/u&&/span&&input
type="text" class="inputstyle" id="u" name="u" value=""
style="ime-mode:disabled" tabindex="1"
onfocus="try{ptui_onUserFocus('u', '#000000')}catch(e){}"
onblur="try{ptui_onUserBlue('u', '#CCCCCC');}catch(e){}check();"
target="_blank" href="?from=pt" tabindex="7"
id="label_newreg"&注册新帐号&/a&&/label&
&&li id="g_p"&
id="label_pwd"&QQ密码:&/u&&/span&&input
type="password" class="inputstyle" id="p" name="p" value=""
maxlength="16" tabindex="2" onfocus="check();" /&
target="_blank" tabindex="8"
href="/ptui_forgetpwd"
onclick="onClickForgetPwd()"
id="label_forget_pwd"&忘了密码?&/a&&/label&
&&li id="verifyinput"
style="display:"&
for="code"&&u
id="label_vcode"&验证码:&/u&&/span&&input
name="verifycode" type="text" style="ime-mode:disabled"
class="inputstyle" id="verifycode" value="" maxlength="5"
tabindex="3"/&
&&li id="verifytip"
style="display:"&
&&span&&&/span&&u
id="label_vcode_tip"&输入下图中的字符,不区分大小写&/u&
&&li id="verifyshow"
style="display:"&
for="pic"&&&/span&&img
id=imgVerify width='130' height='53'
onload='imgLoadReport()'&&label&&a
id="changeimg_link" tabindex="6"
href="javascript:ptui_changeImg('qq.com', 3000701, true);"
&看不清,换一张&/a&&/label&
class="login_button"&
&&input type="submit" tabindex="5"
disabled="disabled" value="登 录" class="btn" id="login_button"
&&div class="lineright"
id="label_unable_tips"&
&&span id="label_qlogin_tips"
src="/ptlogin/v4/style/0/images/load.gif"
align="absmiddle"&正在检测能否快速登录...&/span&
&&input type="hidden" name="aid"
value="3000701" /&
&&input type="hidden" name="u1"
value="/club/portal_new/redirect.html?jump_url=http://lol./forum.php"
&&input type="hidden" name="fp"
value="loginerroralert" /&
&&input type="hidden" name="h"
value="1" /&
&&input type="hidden"
name="ptredirect" value="0" /&
&&input type="hidden" name="ptlang"
value="2052" /&
&&input type="hidden"
name="from_ui" value="1" /&
&&input type="hidden" name="dumy"
value="" /&
&&div id="switch"
class="lineright"&&a
onclick=""&&/a&&/div&
language="javascript"&
&var g_f=$("loginform");
&if((g_appid==)&&(g_f.u.value=="&请输入帐号&")){
&g_f.u.value="支持微博帐号/QQ号码/邮箱地址";
&var wb_tips=document_createElement_x("li");
&wb_tips.style.paddingTop="0";
&wb_tips.style.color="gray";
&wb_tips.id="wb_tips";
&wb_tips.innerHTML="&span&
&/span& "+"未登录QQ或者浏览器不支持快速登录";
&$("u").value="";
&$("u").color="";
&$("g_list").insertBefore(wb_tips,$("g_p"));
&g_time.time3=new Date();
&&/script&
&&script&onSelectLoad();&/script&
src="/ptlogin/ac/v9/js/comm.js?v=1.2.35"
type="text/javascript"&&/script&
language="javascript"&
&function cleanCache(f){
&var t=document_createElement_x("iframe");
&if(f.split("#").length == 3) f =
f.substring(0,f.lastIndexOf("#"));
&t.style.display = "none";
&document.body.a(t);
&if(typeof(core_md5)=="undefined"){
&cleanCache("/ptlogin/ac/v9/js/../clearcache.html#/ptlogin/ac/v9/js/comm.js?v=1.2.35")
&imgAttr2 = new Image();
&imgAttr2.src =
"http://ui./cgi-bin/report?id=85289";
&onPrePageLoad();
&if(reloadweb){
&loadweblogin();
&function onPageClose(){ptui_notifyClose();}
&function ptuiV(v){
&if (v&g_version){
&cleanCache("/clearcache.html#"+location.href);
&function checkVersion(){
&var t = document_createElement_x("script");
&//t.src =
"/ptlogin/ac/v9/js/ver.js?r="+Math.random();
&t.src = "/cgi-bin/ver";
&document.body.a(t);
&setTimeout(checkVersion,1500);
&&/script&
博主评论:QQ就是一堆垃圾!!!
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。

参考资料

 

随机推荐