最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Mask and unmask input text in html - Stack Overflow

programmeradmin3浏览0评论

I have few text fields like SSN , phone number and email id. I would like to do something like onfocus it should display the whole content of that input box and on blur it should mask the content back to something (say asterix).Thanks in advance

I have few text fields like SSN , phone number and email id. I would like to do something like onfocus it should display the whole content of that input box and on blur it should mask the content back to something (say asterix).Thanks in advance

Share Improve this question asked Jun 26, 2012 at 9:31 user1482239user1482239 751 gold badge1 silver badge6 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 12

You could switch the type of the <input> element between password and text in both events. See this example fiddle.

HTML

<input type="password" id="target" />

JS

<script>
var inp = document.querySelector( '#target' );

inp.addEventListener( 'focus', function(){
    inp.type = 'text';
});
inp.addEventListener( 'blur', function(){
    inp.type = 'password';
});
</script>

Try it like this:

<input type="text" id="emailId" name="emailId" />

Then, do a:

var emailIdValue = "";

$( document ).ready( function() {

     emailIdValue = $( '#emailId' ).val();   

     $( '#emailId' ).val( "********" );

     $( '#emailId' ).focus( function() {

          $( this ).val( emailIdValue );

     } ).focusout( function() {

          emailIdValue = $( this ).val();
          $( this ).val( '********' );

     } );

} );

You could simply use <input type="password" /> if you want to do it simple.

发布评论

评论列表(0)

  1. 暂无评论