首页 > 其他 > 详细

字段的占位符文本

时间:2014-07-03 20:18:11      阅读:328      评论:0      收藏:0      [点我收藏+]
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>搜索框占位符文本</title>
    <style type="text/css">
*{font-size:12px;}
#switcher input{height:26px;width:200px;}
.overlabel{position:raletive;}
.overlabel label{position:absolute;top:16px;left:16px;}
    
    </style>
    <script src="./jquery.js"></script>
<script type="text/javascript">


$(function(){
    var $search=$("#search").addClass("overlabel");//虽然是给变量赋值,但是已经执行了,同时,其实执行完毕还是它本身
    var $searchInput=$search.find("input");
    var $searchLabel=$search.find("label");
    if($searchInput.val()){
        $searchLabel.hide();
    }
    $searchInput.focus(function(){
        $searchLabel.hide();
    })
    .blur(function(){
        if($searchInput.val()==‘‘){
        $searchLabel.show();
        }
    });
    $searchLabel.click(function(){
        $searchInput.trigger("focus");
    });
});

</script>
  </head>
  
  <body>
<div id="switcher">
<form id="search" method="" action="" >
<label>字段的占位符文本</label>
<input type="text" value="" id="txt" maxlength="150" name="txtname" />
</div>
</body>
</html>

 

字段的占位符文本,布布扣,bubuko.com

字段的占位符文本

原文:http://www.cnblogs.com/cblx/p/3821194.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!