Heim  >  Artikel  >  Web-Frontend  >  密码框显示提示文字jquery示例_jquery

密码框显示提示文字jquery示例_jquery

WBOY
WBOYOriginal
2016-05-16 17:23:53973Durchsuche
复制代码 代码如下:



登录

<script> <BR>$(document).ready(function(){ <BR>$(".text_login").focus(function(){ <BR>if($(this).val()=='user name' || $(this).val()=='password'){ <BR>$(this).val(''); <BR>} <BR>if($(this).attr('id')=='password1'){ <BR>$(this).hide(); <BR>$('#password2').show(); <BR>$('#password2').focus(); <BR>} <BR>}); <BR>$(".text_login").blur(function(){ <BR>if($(this).attr('id')=='password2' && $(this).val()==''){ <BR>$(this).hide(); <BR>$('#password1').show(); <BR>$('#password1').val('password'); <BR>} <BR>else if($(this).attr('id')=='uname' && $(this).val()=='' ){ <BR>$(this).val('user name'); <BR>} <BR>}); <BR>}); <BR></script>















Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn