网站推广.NET

网站推广.NET

html中textarea输入框提示文字必须添加默认内容的完美解决

来源:互联网


完美解决textarea输入框提示文字,必须添加默认内容

有placeholder标签,可以添加提示文字 ,但是

当然,这样的布局并不是最想要的效果,
最想要的是文字显示在输入框内,点击输入框时隐藏,离开输入框时,如果输入框没有内容,又显示提示:

网上搜到的都是利用js通过获取或失去焦点来设置textarea的内容,这有个最大的问题就是:因为设置了默认内容,如果用户不点击输入框,直接提交,就把默认的提示内容提交到后台了。

本人想出来的解决方案是:将提示内容写在一个p中,通过css的position属性来控制,将p显示到

立即学习“前端免费学习笔记(深入)”;

<!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>解决textarea输入框提示文字,必须添加默认内容</title>        <style type="text/css">             body{font-size:12px;}             p,p{margin:0;padding:0}                          .textarea{                         width:350px;height:80px;position:absolute;background:none;z-index:9            }                         .note{                         position:absolute;line-height:20px;padding:3px 5px;                         }        </style>    </head><body>    <p style="position:relative;">        <textarea class="textarea" onfocus="document.getElementById(&#39;note&#39;).style.display=&#39;none&#39;" onblur="if(value==&#39;&#39;)document.getElementById(&#39;note&#39;).style.display=&#39;block&#39;"></textarea>        <p id="note" class="note">            <font color="#777">在这里写入你对服务商的额外要求,服务商等级,好评率等</font>        </p>    </p></body> </html>
textarea默认文字