一 : 关于Discuz!NT中$(id)两次输入的密码不一致的问题原因
在这次为客户修改论坛皮肤时,在头部加入了另一个登陆入口
后客户反应注册时,即使两次输入的密码一样也提示密码不一致的错误
后查找原因,发现论坛的JS方法$(id)返回的元素不是需要的,返回了我另行添加的登陆入口中的密码框元素,而不是注册表单内的密码框元素,两者的ID是不同的
$(id)是document.getElementById的快捷方式
但测试代码,感觉却是document.getElementById变成了document.getElementsByName方法了,而且是返回的第一个元素,即document.getElementByName
很奇怪的问题
<form id="form1" name="form1" method="post" action="">
<label>
<img type="text" name="password" id="password2" />
</label>
</form>
<form id="form1" name="form1" method="post" action="">
<label>
<img type="text" name="password" id="password" />
</label>
</form>
<script language="javascript">
window.onload = function (){
alert(document.getElementById("password").id);//提示的是password2
alert(document.getElementsByName("password").length);//提示的是2
// document.getElementById("selBox").value="dd";
}
</script>
后来才发现为了兼容IE8Beta在页头中添加了<meta http-equiv="X-UA-Compatible" content="IE=7" />造成,去掉后恢复正常
二 : WOW充值卡被锁问题今天上午充值时,连续输错了几次充值密码,结果
WOW充值卡被锁问题
今天上午充值时,连续输错了几次充值密码,结果卡被锁了,刚打了客服电话结果让打销售客服电话,销售客服5次都是正忙,简直是让我花上长途的钱听!
发完牢骚,问题:充值卡解锁是否需要卡的序列号?如果自己手头没有序列号该怎么办?我的这张卡是托朋友买的只告诉了我充值密码。
谢谢!
需要序列号的.你让朋友把序列号也告诉你不就完了.
三 : asp实现限制一个ip只能访问一次的方法
限制一个ip只能访问一次,现在将asp代码分享给大家:
<% '///////////////////////////////////////////////////// '// // '//作用:一个IP地址只允许访问本页一次 // '//引用:<!-- #include file="Check_Ip.asp" --> // '// // '///////////////////////////////////////////////////// 'Response.Charset = 936 '设置输出编码为简体中文 'Response.Buffer = false '关闭缓冲区 Dim Fso,ts,IpList,Cfs '设置Cookies函数 Function SetCookie() Response.Cookies("IsBrow") = "Brow" Response.Cookies("IsBrow").Expires = Date+365 End Function '记录IP地址函数 Function WriteIp(FileName, IpAddress) Set Fso = Server.CreateObject("Scripting.FileSystemObject") Set ts = Fso.OpenTextFile(Server.MapPath(FileName),8,true) ts.WriteLine IpAddress ts.Close Set ts = Nothing Set Fso = Nothing End Function '读取IP地址函数 Function ReadIpList(FileName) Set Fso = Server.CreateObject("Scripting.FileSystemObject") If Not Fso.FileExists(Server.MapPath(FileName)) Then CreateFile("Iplist.txt") Exit Function End If Set ts = Fso.OpenTextFile(Server.MapPath(FileName)) Iplist = ts.ReadAll ts.Close Set ts = Nothing Set Fso = Nothing ReadIpList = Iplist End Function '创建文件函数 Function CreateFile(FileName) Set Fso = Server.CreateObject("Scripting.FileSystemObject") Set Cfs = Fso.CreateTextFile(Server.MapPath(FileName)) Cfs.Close Set Cfs = Nothing Set Fso = Nothing End Function '关闭当前IE窗口函数(注:IE6下通过,其他浏览器未测试) Function CloseWindow() 'Response.Write "<script>window.location='javascript:window.opener=null;window.close();'</script>" Response.Redirect "http://www.baidu.com" End Function Ip = Request.ServerVariables("REMOTE_ADDR") '获取浏览者IP地址 Cookie = Request.Cookies("IsBrow") '获取当前Cookies 'Response.Write Cookie If Request.ServerVariables("HTTP_X_FORWARDED_FOR") <> "" Then Response.Write "本站不允许使用代理访问" Response.End() Else If Cookie = "Brow" Then CloseWindow() Else If Instr(ReadIpList("Iplist.txt"),Ip) <> 0 Then CloseWindow() Else WriteIp "Iplist.txt" , Ip End If SetCookie() End If End If %>
以上就是分享给大家的asp实现代码,希望对大家的学习有所帮助。
四 : iphone6 plus访问限制密码忘记的可行解决方法
苹果6 plus访问限制密码忘了怎么办?相信很多用户对于苹果6 plus访问限制密码忘了怎么办还不太清楚,下面小编来跟大家分享一下iphone6 plus访问限制密码忘了降级方法,感兴趣的可以过来看一下。
iphone6 plus访问限制密码忘了解决方法:
1、下载itools工具
2、利用itools工具打开private/var/keychains/,找到该文件夹下的keychain-2.db,首先做好备份(以防万一),然后删除该文件keychain-2.db
3、关机重新启动即可
五 : 给系统密码添上一把限制锁限制输入次数防止无聊人猜密
大家都知道,在WIN系统中可以设定用户密码以保护我们的系统安全。可是很多时候,经常有人在自己不在时用“猜谜”的方式来试着找出密码。如何能对这些无聊者做一下限制呢?其实我们可以在用户密码输错时设定帐户登录次数和锁定时间,下面系统之家就告诉你如何给系统密码添上一把限制锁限制输入次数。61阅读| 精彩专题| 最新文章| 热门文章| 苏ICP备13036349号-1