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

后端 未结 6 1363
庸人自扰
庸人自扰 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:49

    You can set a callback function for the onSubmit event of the form and check the contents of each field. If it contains nothing you can then fill it with the string "empty":

    and in your js:

    function check() {
        if(document.forms["my_form"]["text1"].value == "")
            document.forms["my_form"]["text1"].value = "empty";
    }
    

提交回复
热议问题