欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript开发文本框水印提示效果的简单实现代码

程序员文章站 2023-08-26 11:17:35
代码如下:    

代码如下:


<!doctype html>
<html>
<head>
    <title></title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    <style type="text/css">
        #ptips{
            filter:alpha(opacity=30); /*ie滤镜,透明度50%*/
            -moz-opacity:0.3; /*firefox私有,透明度50%*/
            opacity:0.3;/*其他,透明度50%*/
            position: absolute;width: 600px; height: 400px;display:none;color:red;z-index:10;padding:10px;
        }
    </style>
    <script type="text/javascript">
        $(function () {
            var $txtnote = $("#txtnote");
            var $ptips = $("#ptips");
            $txtnote.focus(function () {
                //置焦点时隐藏
                $ptips.hide();
            }).blur(function () {
                //离开时, 如果为空则显示,否则隐藏. 然后定位
                $ptips.toggle($txtnote.val() == "")
                    .css({
                        "left": $txtnote.position().left,
                        "top" : $txtnote.position().top
                    });
            });
            $ptips.click(function () {
                $txtnote.focus();
            });
            $txtnote.blur();
        });
    </script>
</head>
<body>
    留言板<br />
    <textarea id="txtnote" style="width: 600px; height: 400px;"></textarea>
    <p id="ptips">
        亲,欢迎访问,有什么说的就写下来吧!!<br />
        (在下面的框框中留下您的name, 方便的话请留下您的联系方式)
    </p><br />
    <input type="text" value="姓名" /> <input type="text" value="手机/qq/……" />
</body>
</html>