Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
469 views
in Technique[技术] by (71.8m points)

jquery - Strip white spaces on input

I have a field that does not need any white spaces. I need to remove any as they are entered. Here's what I'm trying... no luck so far

$('#noSpacesField').click(function() {
    $(this).val().replace(/ /g,'');
});
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use jQuery trim to remove leading and trailing white space

$.trim(" test case "); // 'test case'

To remove all whitespace...

" test   ing  ".replace(/s+/g, ''); // 'testing'

To remove whitespace as it is entered...

$(function(){
  $('#noSpacesField').bind('input', function(){
    $(this).val(function(_, v){
      return v.replace(/s+/g, '');
    });
  });
});

Live Example


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...