日期:2014-05-16  浏览次数:20417 次

JavaScript(JS)记住用户名和密码 (应该自己写个通用的组件)
//coder:LinQifo?2007.11.5



<head?runat="server">
????

{??//userName1=userName;Pwd=password???
????
{??????????
?????alert(?getCookie(
'password'));
//
?????document.getElementById?('TextBox1').value=getCookie('userName');
????}

//?用正则表达式将前后空格,用空字符串替代(PS:因为js没有现成的trim,所以要加上这个)
{???????
?????
return???this.replace(/(^s*)|(s*$)/g,???"");???
function?getCookie(objName)//获取指定名称的cookie的值
{????
????
????????????
{
????????????????
if(objName.trim()==temp[0].trim())?//此处如果没有去掉字符串空格就不行,偶在这里折腾了半死,主要是这种错误不好跟踪啊