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

javascript - Trim white spaces of value in input - Stack Overflow

programmeradmin2浏览0评论

Help needed for a newbie. I'm having a hard time deleting white spaces from input in the submit form. Here's the way I tried to do it:

var usernameInput = document.querySelector('.setup-user-name');
var newValue = usernameInput.value.trim();
usernameInput.value = newValue;

After that form should go through validation like that:

usernameInput.addEventListener('invalid', function () {
  if (usernameInput.validity.tooShort) {
    usernameInput.setCustomValidity('Имя должно состоять минимум из 2-х 
символов');
  } else if (usernameInput.validity.valueMissing) {
    usernameInput.setCustomValidity('Обязательное поле');
  } else {
    usernameInput.setCustomValidity('');
  }
});

Even though I use the trim method I'm still able to submit the form with spaces in the input.

Help needed for a newbie. I'm having a hard time deleting white spaces from input in the submit form. Here's the way I tried to do it:

var usernameInput = document.querySelector('.setup-user-name');
var newValue = usernameInput.value.trim();
usernameInput.value = newValue;

After that form should go through validation like that:

usernameInput.addEventListener('invalid', function () {
  if (usernameInput.validity.tooShort) {
    usernameInput.setCustomValidity('Имя должно состоять минимум из 2-х 
символов');
  } else if (usernameInput.validity.valueMissing) {
    usernameInput.setCustomValidity('Обязательное поле');
  } else {
    usernameInput.setCustomValidity('');
  }
});

Even though I use the trim method I'm still able to submit the form with spaces in the input.

Share Improve this question edited Dec 25, 2018 at 4:48 Gershom Maes 8,1783 gold badges41 silver badges61 bronze badges asked Dec 25, 2018 at 4:01 Maksim SenkoMaksim Senko 711 gold badge1 silver badge6 bronze badges 6
  • because there is no validation about white spaces. – holydragon Commented Dec 25, 2018 at 4:04
  • Furthermore trim removes white spaces only from the begin and the end. Is it that what you intend to do? – Pinke Helga Commented Dec 25, 2018 at 4:22
  • Yes, that's my intention @Quasimodo'sclone – Maksim Senko Commented Dec 25, 2018 at 4:28
  • 1 It isn't clear if you want to automatically sanitize the input, or signal errors when it's invalid. Which do you want? – Gershom Maes Commented Dec 25, 2018 at 5:06
  • @GershomMaes I want to be able to see signal errors when it's invalid. – Maksim Senko Commented Dec 25, 2018 at 5:35
 |  Show 1 more ment

2 Answers 2

Reset to default 7

You can prevent users from entering usernames containing leading or trailing spaces by using the html pattern attribute and using regex to define what an acceptable username looks like:

<p>Try entering a value with leading and/or trailing spaces</p>
<p>If the form disappears that means the value was accepted</p>
<form enctype"...">
  <input class="setup-user-name" placeholder="username" pattern="^[^ ].+[^ ]$" />
  <input type="submit" value="submit" />
</form>

You'll note the regex I used here is:

^[^ ].+[^ ]$

  • The initial carat symbol (^) means "the beginning of the string".
  • The sequence [^ ] means "any character but a space"
  • The sequence .+ means "anything at all; minimum 1 character"
  • The sequence [^ ] again means "any character but a space"
  • The final $ symbol means "the end of the string"

This regex defines an "acceptable" value as one which doesn't have a space directly after the beginning of the string, or directly before the end of the string.

Javascript trim method only removes whitespace from both sides of a string.

var str = "  this is sample string  "
console.log(str.trim()) // "this is sample string"

if you want to remove all white spaces you can use replace method

var str = "  this is sample string  "
console.log(str.replace(/\s/g, "")) // "thisissamplestring"

if you are thinking of validation then you should use your own validation or use other libraries for validation, these methods only return new string of specified value and does not perform any validation

发布评论

评论列表(0)

  1. 暂无评论