If input value is blank, assign a value of “empty” with Javascript

后端 未结 6 1517
庸人自扰
庸人自扰 2021-02-01 21:49

So I have an input field, if it\'s blank, I want its value to be the words \"empty\", but if there is any value inputted, I want the value to be the inputted value. I want to us

6条回答
  •  耶瑟儿~
    2021-02-01 22:50

    If you're using pure JS you can simply do it like:

    var input = document.getElementById('myInput');
    
    if(input.value.length == 0)
        input.value = "Empty";
    

    Here's a demo: http://jsfiddle.net/nYtm8/

提交回复
热议问题