Choosing Select Option Opens the Dropdown Menu

后端 未结 2 1195
离开以前
离开以前 2020-12-17 16:43

I am using a dropdown menu and a form with a select dropdown right under it.

The problem is that when I open the dropdown in the form and select the first option (\"

2条回答
  •  独厮守ぢ
    2020-12-17 17:25

    After falling into this issue HTML select triggers css:hover on select i have this solution to propose that could be usefull over here as well. it requires only one line of js:

    $(".form select").on("change", function(){$("#nav ul").hide(); $(".form form").submit();});
    

    You can add hide selector according to your case.

提交回复
热议问题