模拟placeholder效果

本文介绍了一种使用JavaScript来模拟HTML输入框placeholder效果的方法,通过改变输入框的样式和内容实现用户体验的提升。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

因为要修改默认placeholder的样式比较困难,用js模拟placeholder的效果

<!DOCTYPE HTML>
<html lang="zh-CN">

<head>
    <meta charset="utf-8">
    <title>模拟placeholder</title>
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>
    <script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>
    <style>
        *{margin: 0;padding: 0}
        div#main{
            width:300px;
            text-align: center;
        }
        .red{
            color:red;
        }
   </style>
</head>

<body>
    <input type="text" class="form-control red" value="请输入电话">
    <script>
        $(function(){
            $('input').focus(function(){
                if($(this).val()=='请输入电话'){
                    $(this).toggleClass('red');
                    $(this).val('');
                }
            });
            $('input').blur(function(){
                if($(this).val().trim()==''){
                    $(this).toggleClass('red');
                    $(this).val('请输入电话');
                }
            });
        });
        
    </script>
</body>

</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值