标签:style blog io color os 使用 sp on div
1 <span class="input_tips"> 2 <input name= "accout" type="text" class= "login_input login_name" value="" /> 3 <div style= "position:relative ;color: #ccc"> 4 <div class= "tips_content" style= "position:absolute ;top:- 45px; left:70 px"> 用户名 </div> 5 </div> 6 </span>
1 $(".input_tips").click(function(){ 2 $(this).children("div").css("display","none"); 3 $(this).children("input").focus();//有时点击在div上时,没有这行不行 4 $(this).children("input").focus(function(){//当使用tab切换时 5 $(this).next("div").css("display", "none"); 6 }); 7 $(this).children("input").blur(function(){ 8 if(($(this).val())=="") { 9 $(this).next("div").css("display", "block"); 10 } 11 }) 12 });
1 $ (".input_tips").children ("input").focus (function(){ //当使用tab切换时 2 $ (this). next("div" ).css( "display" , "none") ; 3 }); 4 $(".input_tips" ).children( "input" ).blur( function(){ 5 if(( $(this). val())=="" ) { 6 $ (this). next("div" ).css( "display" , "block" ); 7 } 8 }); 9 $(".input_tips" ).click( function(){ 10 $(this). children("div" ).css( "display" ,"none") ; 11 $ (this). children("input" ).focus() ;//有时点击在 div上时,没有这行不行 12 });
标签:style blog io color os 使用 sp on div
原文地址:http://www.cnblogs.com/liushiyong1/p/4168945.html