zoukankan      html  css  js  c++  java
  • 记住密码提示框

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>记住密码提示框</title>
    <style>
    body,input,p{margin:0;padding:0;}
    body{font:12px/1.5 Tahoma;}
    #outer{200px;margin:10px auto;}
    input{margin-right:5px;vertical-align:middle;}
    #tips{padding:5px;margin-top:5px;background:#ffefa4;border:1px solid #f90;display:none;}
    </style>
    <script>
    window.onload = function ()
    {
        var oTips = document.getElementById("tips");
        var oLabel = document.getElementsByTagName("label")[0];    
        oLabel.onmouseover = function ()
        {
            oTips.style.display = "block"
        };
        oLabel.onmouseout = function ()
        {
            oTips.style.display = "none"    
        }
    }
    </script>
    </head>
    <body>
    <div id="outer">
        <label><input type="checkbox" />两周内自动登陆</label>
        <div id="tips">为了您的信息安全,请不要在网吧或公用电脑上使用此功能!</div>
    </div>
    </body>
    </html>
  • 相关阅读:
    ASP.NET结合COM组件发送Email
    木马生成技术
    AJAX中使用Session
    对象模型文档对象模型DOM简介
    何遍历数据源中的表名称
    AJAX.NET用户开发指南
    用ASP.NET上传大文件
    .net反编译利器
    Equals和GetHashcode
    Factory Method模式
  • 原文地址:https://www.cnblogs.com/mayufo/p/4474929.html
Copyright © 2011-2022 走看看