zoukankan      html  css  js  c++  java
  • 关于一个注册邮箱的demo

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
     2 "http://www.w3.org/TR/html4/strict.dtd">
     3 
     4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
     5     <head>
     6         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     7         <title>val_test</title>
     8         <meta name="author" content="Administrator" />
     9         <script type="text/javascript" src="script/jquery-1.12.2.js"></script>
    10         <!-- Date: 2016-03-23 -->
    11     </head>
    12     <body>
    13         <input type="text" id="address" value="请输入邮箱地址" />
    14         <input type="text" id="password" value="请输入邮箱密码" />
    15         <input type="button" value="登录" />
    16         <script type="text/javascript">
    17             $("#address").focus(function() {
    18                 var txt_value = $(this).val();
    19                 if(txt_value=="请输入邮箱地址"){//或者用defaultValue。
    20                     $(this).val("");
    21                 }
    22             });
    23             
    24             $("#address").blur(function() {
    25                 var txt_value = $(this).val();
    26                 if(txt_value==""){
    27                     $(this).val("请输入邮箱地址");
    28                 }
    29             });
    30             
    31                 $("#password").focus(function() {
    32                 var txt_value = $(this).val();
    33                 if(txt_value=="请输入邮箱密码"){
    34                     $(this).val("");
    35                 }
    36             });
    37             
    38             $("#password").blur(function() {
    39                 var txt_value = $(this).val();
    40                 if(txt_value==""){
    41                     $(this).val("请输入邮箱密码");
    42                 }
    43             });
    44         </script>
    45     </body>
    46 </html>
  • 相关阅读:
    PHP基础知识(十一)
    PHP基础知识(十)
    PHP基础知识(九)
    PHP中禁用cookie后session的实现
    PHP基础知识(八)
    将博客搬至CSDN
    如何为预先数据库创建自定义SQL Server复制
    数据库同步工具
    如何终止与MySQL数据库的某些连接
    从Oracle到SQL Server和从SQL Server到Oracle的迁移指南
  • 原文地址:https://www.cnblogs.com/Arther-J/p/5309831.html
Copyright © 2011-2022 走看看