HTML Input Box - Disable

后端 未结 5 439
南旧
南旧 2020-12-11 00:13

what is the code to disable an INPUT text box for HTML?

Thanks

5条回答
  •  悲&欢浪女
    2020-12-11 01:04

    You can Use both disabled or readonly attribute of input . Using disable attribute will omit that value at form submit, so if you want that values at submit event make them readonly instead of disable.

     
    

    or

     
    

提交回复
热议问题