博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery焦点事件
阅读量:6304 次
发布时间:2019-06-22

本文共 1076 字,大约阅读时间需要 3 分钟。

hot3.png

<!DOCTYPE html>

<html>
    <head>
        <meta charset="UTF-8">
        <meta name="author" content="微普科技 http://www.wiipu.com" />
        <title>jquery实现输入框动态搜索样式</title>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }
            body {
                background-color: #ddd;
            }
            .zmkt {
                width: 600px;
                margin: 20px auto;
            }
            input[type=text] {
                width: 150px;
                border: 2px solid #ccc;
                border-radius: 4px;
                font-size: 16px;
                background-color: white;
                background-position: 10px 10px; 
                padding: 12px 20px 12px 10px;
                outline: lightblue;
            }
        </style>
        <script src="http://xiguape.wiipu.com/basecode/js/jquery.1.9.1.min.js"></script>
        <script type="text/javascript">
            $(function (){
                $("input").focus(function(){
                    $("input").val("得到焦点时");
                    $("input").animate({
                        width:"600",
                        
                    },500)
                });
                $("input").blur(function(){
                    $("input").val("失去焦点时");
                    $("input").animate({
                        width:"150",
                        
                    },500);
                })
                
                
            })
        </script>
    </head>
    <body>
        <!--提示:使用jquery完成图示效果,输入框得到焦点是,
        宽度长度变为100%,动画时间为500,value值为“得到焦点时“,
        失去焦点时,输入框变为原始的样式-->
        <div class="zmkt">
            <input type="text" name="text" id="text" value="失去焦点时" />
        </div>
    </body>
</html>
 

转载于:https://my.oschina.net/kitty0107/blog/1626141

你可能感兴趣的文章
Richard M. Stallman 给《自由开源软件本地化》写的前言
查看>>
oracle数据库密码过期报错
查看>>
修改mysql数据库的默认编码方式 .
查看>>
zip
查看>>
How to recover from root.sh on 11.2 Grid Infrastructure Failed
查看>>
rhel6下安装配置Squid过程
查看>>
《树莓派开发实战(第2版)》——1.1 选择树莓派型号
查看>>
在 Linux 下使用 fdisk 扩展分区容量
查看>>
结合AlphaGo算法和大数据的量化基本面分析法探讨
查看>>
如何在 Ubuntu Linux 16.04 LTS 中使用多个连接加速 apt-get/apt
查看>>
《OpenACC并行编程实战》—— 导读
查看>>
机器学习:用初等数学解读逻辑回归
查看>>
如何在 Ubuntu 中管理和使用逻辑卷管理 LVM
查看>>
Oracle原厂老兵:从负面案例看Hint的最佳使用方式
查看>>
把自己Github上的代码添加Cocoapods支持
查看>>
C语言OJ项目参考(2493)四则运算
查看>>
零基础入门深度学习(二):神经网络和反向传播算法
查看>>
find和xargs
查看>>
数据结构例程—— 交换排序之快速排序
查看>>
WKWebView代理方法解析
查看>>