欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

简单的邮箱登陆的提示效果类似于yahoo邮箱

时间:2020-12-14 14:24:21|栏目:JavaScript代码|点击:

当鼠标聚焦到邮箱地址文本框时,文本框内的“请输入邮箱地址”文字被清空。

效果图:

复制代码 代码如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="类似于yahoo邮箱登陆的提示效果.aspx.cs" Inherits="类似于yahoo邮箱登陆的提示效果" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script type ="text/javascript" src ="Scripts/jquery-1.7.1.js"></script>
    <script type ="text/javascript" >
        $(function () {
            //对地址框进行操作
            $("#address").focus(function () {        //地址框获得鼠标焦点
                var txt_value = $(this).val();       //得到当前文本框的值
                if (txt_value == "请输入邮箱地址") {
                    $(this).val("");                 //如果符合条件,则清空文本框内容
                }
            });
            $("#address").blur(function () {         //地址框失去鼠标焦点
                var txt_value = $(this).val();       //得到当前文本框的值
                if (txt_value == "") {
                    $(this).val("请输入邮箱地址");      //如果符合条件,则设置内容
                }
            })
            //对密码框进行操作
            $("#password").focus(function () {
                var txt_value = $(this).val();
                if (txt_value == "请输入邮箱密码") {
                    $(this).val("");
                }
            });
            $("#password").blur(function () {
                var txt_value = $(this).val();
                if (txt_value == "") {
                    $(this).val("请输入邮箱密码");
                }
            })
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <input type ="text" id ="address" value ="请输入邮箱地址" /><br /><br />
        <input type ="text" id ="password" value ="请输入邮箱密码" /><br /><br />
        <input type ="button" value ="登录" />
    </div>
    </form>
</body>
</html>

上一篇:JS实现仿新浪微博发布内容为空时提示功能代码

栏    目:JavaScript代码

下一篇:jQuery单页面文字搜索插件jquery.fullsearch.js的使用方法

本文标题:简单的邮箱登陆的提示效果类似于yahoo邮箱

本文地址:http://www.codeinn.net/misctech/32570.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有