Display div if a specific select option value is selected

前端 未结 7 1463
执笔经年
执笔经年 2021-02-02 03:57

I am trying to display a div if user select a specific option value from a select drop down list.

Example:

The select drop down list consist of dynamic names fet

7条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-02 04:07

    You can attach change event handler on body load event and hide/unhide

    based on selection:

    HTML

    
    
    
    
    

    Put the following code in Head tag:

    
    

    Call the onload function in body:

    
    

    jsfiddle demo

提交回复
热议问题