HTML textarea输入框提示文字,添加默认内容

来源:互联网 发布:2016网络彩票重启时间 编辑:程序博客网 时间:2024/06/07 14:06
<!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>HTML textarea输入框提示文字,必须默认内容</title>
  <style type="text/css">
  .textarea_content{
  width:350px;height:80px;position:absolute;background:none;z-index:9
  }
  .note_tip{
    position:absolute;line-height:20px;padding:3px 5px;
  }
  </style>
</head>
<body>
  <div>
    <textarea class="textarea_content" onfocus="document.getElementById('note').style.display='none'" onblur="if(value=='')document.getElementById('note').style.display='block'"></textarea>
    <div id="note" class="note_tip">
       <font color="#777">在这里发表您的评论!</font>
    </div>
  </div>
</body>
</html>
阅读全文
0 0