怎样在网页上加入邮箱注册功能?跟hao123上一个样的!哪里有教程可以下载的?

来源:百度知道 编辑:UC知道 时间:2024/06/26 04:43:11
www.hao123.com上有一个邮箱登陆功能!很方便,想知道究竟是怎么做的?我看代码也是犀利糊涂的,有什么教程专门讲到这个的?

其实很简单,你得把原理搞清楚了,你就知道怎么做了。
比如:以上是它的HTML原码:
<FORM name=gomail onsubmit="return clickMail()" action="" method=post id=FrLgn>
<INPUT type=hidden name=url>
<INPUT type=hidden name=username>
<INPUT type=hidden name=type>
<INPUT type=hidden name=password>
<INPUT type=hidden name=domain>
...
<INPUT type=hidden name=vpassword>

用户名:<input tabIndex=1 size=15 name=uName>
邮箱:<select tabIndex=2 size=1 name=domains>
<option selected >请选择邮箱</option>
<option value=163>@163.com 网易</option>
<option value=sina>@sina.com 新浪</option>
...
</select>
密码:<input tabIndex=3 type=password size=12 name=uPw>
<input tabIndex=4 type=submit value=" 登录 " name=sub style="height:1.67em;width:5.0em;font-size:13px">
<INPUT type=hidden value=submit name=cmd>
<