• jquery练习


    第四章

    实现鼠标经过字体变白吗,背景变蓝的效果,鼠标离开,恢复原来的样式。

    <!DOCTYPE html>
    <html>
      <head>
        <title>Unit.html</title>
        <style type="text/css">
        .a{
            background: blue;
            color: white;
        }
        </style>
        <script type="text/javascript" src="../js/jquery-3.3.1.js"></script>
        <script type="text/javascript">
            $(function(){
                $("li").mouseover(function(){
                    $(this).addClass("a");
                });
                $("li").mouseleave(function(){
                    $(this).removeClass("a");
                });
                
            });
        </script>
      </head>
      
      <body>
        新手上路:
        <ul>
            <li>标题一</li>
            <li>标题一</li>
            <li>标题一</li>
            <li>标题一</li>
            <li>标题一</li>
        </ul>
      </body>
    </html> 

    输入提示效果

    <!DOCTYPE html>
    <html>
      <head>
        <title>test1.html</title>
        <script type="text/javascript" src="../js/jquery-3.3.1.js"></script>
        <script type="text/javascript">
        $(function(){
            $("#username").click(function(){
                $(this).val("");
            });
            $("#password").click(function(){
                $(this).val("");
            });
        });
        
        </script>
      </head>
      
      <body>
        <from>
            用户名:<input type="text" value="用户名" style="color:gray;" id="username"><br><br>
            密码:<input type="text" value="密码" style="color:gray;" id="password"><br><br>
            <input type="submit" type="login">
        </from>
    
      </body>
    </html>
  • 相关阅读:
    发送 GET 和 POST 请求
    日志记录帮助类
    常用正则表达式
    获取验证码
    C# 生成二维码
    android sql Cursor
    sql 语句操作
    android 界面悬浮框实现
    android activity四种启动模式
    andorid 自定义view属性declare-styleable
  • 原文地址:https://www.cnblogs.com/excellencesy/p/8776467.html
Copyright © 2020-2023  润新知