코드
<select class="select select-ghost nomal-case text-lg ml-3 w-[9rem]" id="board_selecter"
onchange="changeBoard(selectedIndex)">
<option disabled selected>게시판</option>
<option value="1">공지 게시판</option>
<option value="2">자유 게시판</option>
</select>
<script>
function changeBoard(value) {
location.href = "/usr/article/list?boardId=" + value;
}
</script>
사용 시
참고
https://goodsgoods.tistory.com/249