给你一个用SCRIPT的方案
<SCRIPT src="images/email.js"></SCRIPT>
<form method="post" name="mailForm" onSubmit="return check(this)">
Email 帐号: <font color="#FFFFFF">
<input name="name" onfocus="this.select()" size="17" style="FONT-SIZE: 13px">
信箱<font color="#FFFFFF">
<select name="mailSelect" size="1" style="FONT-SIZE: 12px">
<option>请选择你的邮局</option>
<option value="http://bjweb.163.net/cgi/163/login_pro.cgi;user;pass" selected>@163.net</option>
<option value="http://bjweb.163.net/cgi/163/login_pro.cgi;user;pass">@Tom.com</option>
<option value="http://webmail.21cn.com/NULL/NULL/NULL/NULL/NULL/SignIn.gen;LoginName;passwd;post">@21cn.com</option>
<option value="http://webmail.21cn.net/nature/gb/NULL/NULL/NULL/SignIn.gen;LoginName;passwd;hidden;DomainName;21cn.net">@21cn.net</option>
<option value="http://freemail.263.net/cgi/login;user;pass">@263.net</option>
<option value="http://reg4.163.com/in.jsp?url=http://reg4.163.com/EnterEmail.jsp?username=window.document.mailForm.name.value;username;password;post">@163.com</option>
<option value="http://vip.163.com/payment/VipLogon.jsp;username;password;post">@vip.163.com</option>
<option value="http://web.netease.com/cgi/login;user;pass;post">@netease.com</option>
<option value="http://web.yeah.net/cgi/login;user;pass;post">@Yeah.net</option>
<option value="http://freemail.china.com/extend/gb/NULL/NULL/NULL/SignIn.gen;LoginName;passwd;post">@mail.china.com</option>
<option value="http://paymail.china.com/extend/gb/NULL/NULL/NULL/SignIn.gen;LoginName;passwd;post">@china.com</option>
<option value="http://login.mail.sohu.com/chkpwd.php;UserName;Password;post">@sohu.com</option>
<option value="http://www.citiz.net/login.jsp.jsp;username;password;post">@citiz.net</option>
<option value="http://login.chinaren.com/zhs/servlet/Login;username;password;post;hidden;url;http://mail.chinaren.com">@ChinaRen.com</option>
<option value="http://mw1.elong.com/cgi-bin/weblogon.cgi;username;password;post">@elong.com</option>
<option value="http://login.etang.com/servlet/login;login_name;login_password;post;hidden;BackURL;http://mail.etang.com/cgi/door">@etang.com</option>
<option value="http://edit.bjs.yahoo.com/config/login;login;passwd;post">中文雅虎</option>
<option value="http://mail.2911.net/cgi-bin/mail/main.pl;USERNAME;PASSWORD;post">@2911.net</option>
<option value="http://202.106.186.230/extend/newgb1/NULL/NULL/NULL/SignIn.gen;LoginName;passwd;post;hidden;DomainName;email.com.cn">@email.com.cn</option>
<option value="https://login.passport.com/ppsecure/post.srf?da=passport.com&svc=mail;login;passwd;suffix;hotmail.com">@hotmail.com</option>
<option value="https://login.passport.com/ppsecure/post.srf?da=passport.com&svc=mail;login;passwd;suffix;msn.com">@msn.com</option>
<option value="http://mail.sina.com.cn/cgi-bin/login.cgi;u;psw">@sina.com</option>
<option value="http://vip.sina.com/cgi-bin/login.cgi;user;pass">@vip.sina.com</option>
</select>
密码
<input name="password" onfocus="this.select()" type="password" size="17" style="FONT-SIZE: 12px">
<input name="log-in" type="submit" class="so" id="log-in" style="background-color: #EFEFE7" onclick="setTimeout('ClearPass()',1000)" value="登录信箱">
</form>
下面是email.js的内容
<!--
function check(input){
if(input.mailSelect.options.selectedIndex==0){
alert("提示:请正确选择你使用的邮箱");
return false;}
if(input.name.value==""){
alert("提示:邮箱用户名必须填写!");
input.name.focus();
return false;}
if(input.password.value=="" || input.password.value.length<3){
alert("提示:邮箱密码必须填写完整!");
input.password.focus();
return false;}
else{go();
return false;}}
function makeURL(){
var objForm=document.mailForm;
var intIndex=objForm.mailSelect.options.selectedIndex;
var varInfo=objForm.mailSelect.options[intIndex].value; /*获取的表单中邮件服务器及用户账号和密码信息*/
var arrayInfo=varInfo.split(';'); /*将以上获取的信息进行分割,并赋给数组变量*/
var strName=objForm.name.value,varPasswd=objForm.password.value;
var length=arrayInfo.length,strProvider=arrayInfo[0],strIdName=arrayInfo[1],varPassName=arrayInfo[2];
if(length==3){
var strUrl=strProvider+'?'+strIdName+'='+strName+'&'+varPassName+'='+varPasswd; /*合并字符串,得到形如“http://mail.sina.com.cn/cgi-bin/log...”的字符串型URL*/
}
else{
if(arrayInfo[3]=='suffix') strName+='@'+arrayInfo[4]
var strUrl='<form name="tmpForm" action="'+strProvider+'" method="post"><input type="hidden" name="'+strIdName+'" value="'+strName+'"><input type="hidden" name="'+varPassName+'" value="'+varPasswd+'">';
if(arrayInfo[3]=='hidden') strUrl+='<input type="hidden" name="'+arrayInfo[4]+'" value="'+arrayInfo[5]+'">'
strUrl+='</form>';
}
return strUrl;
}
function go(){
var strLocation=makeURL();
if(strLocation.indexOf('<form name="tmpForm"')!=-1){/*对于只能用“post”来获取表单数据的邮箱使用自动提交的临时表单*/
outWin=window.open('','','scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes');
doc=outWin.document;
doc.open('text/html');
doc.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>邮箱登录</title></head><body onload="document.tmpForm.submit()">');
doc.write('<p align="center" style="font-size: 14px; color: #FF0000">登录系统中,请稍候......</p>'+strLocation+'</body></html>');
doc.close();
}
else window.open(strLocation,'','scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes');
}
function ClearPass(){
document.mailForm.password.value="";
}
function News_Window(theURL,winName,features) {
window.open(theURL,winName,features);
}
//--> |