Bootstrap 4 nested dropdown?

前端 未结 3 1059
青春惊慌失措
青春惊慌失措 2021-01-06 14:23

What I am trying to do is if anyone click on arts then History sociology and geography submenu should show up. It should now appear when someone clicks on Arts.
https://

3条回答
  •  走了就别回头了
    2021-01-06 14:47

    $(document).ready(function () {
        $("#type").change(function () {
            var val = $(this).val();
            if (val == "arts") {
                $("#type").html("");
            } else if (val == "science") {
                $("#type").html("");
            }
        });
    });
    
    

提交回复
热议问题