HTML form readonly SELECT tag/input

前端 未结 30 2797
陌清茗
陌清茗 2020-11-22 08:28

According to HTML specs, the select tag in HTML doesn\'t have a readonly attribute, only a disabled attribute. So if you want to keep

30条回答
  •  耶瑟儿~
    2020-11-22 09:17

    We could also use this

    Disable all except the selected option:

    
    

    This way the dropdown still works (and submits its value) but the user can not select another value.

    Demo

提交回复
热议问题