码迷,mamicode.com
首页 > 其他好文 > 详细

焦点聚焦失焦默认值显示隐藏

时间:2017-08-10 19:30:17      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:htm   doctype   lang   char   his   set   var   tle   ext   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
<input type="checkbox" name="">
<input type="checkbox" name="">
<input type="checkbox" name="">
<input type="text" name="" value="请填写...">
    
</body>
<script type="text/javascript" src="js/jquery-3.2.1.js"></script>
<script type="text/javascript">
    $(function(){
        $("input[type=‘checkbox‘]").prop("checked",true);
        $("input[type=‘checkbox‘]:eq(2)").prop("disabled",true);
        $(input[type=text]).focus(function(){
            var mozhi=$(this).val();
            if(mozhi==请填写...){
                $(this).val(‘‘)
            }
        });
        $(input[type=text]).blur(function(){
            var thisval=$(this).val();
            if(thisval==‘‘){
                $(this).val("请填写...");
            }
        })

    })
</script>
</html>

 

焦点聚焦失焦默认值显示隐藏

标签:htm   doctype   lang   char   his   set   var   tle   ext   

原文地址:http://www.cnblogs.com/jinsuo/p/7340788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!