How to disable/remove only first space on input field?

前端 未结 4 1265
萌比男神i
萌比男神i 2021-02-11 03:15

Good morning everybody!

I have a case, when I should prevent users to entering space as a first character on input field.

I have a demo here: http://jsbin.com/fo

4条回答
  •  借酒劲吻你
    2021-02-11 03:47

    document.querySelector('#test').addEventListener('input',function(e){ if(e.target.value===" ") e.target.value="" })

    this code dosent let users space at the first even if any users select whole text in input (ctrl+a) and then hit the space bar

提交回复
热议问题