셀렉트(select) change href 이벤트

by 조쉬 posted Dec 23, 2016
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
$(document).ready(function(){
$("#lyjMenu").change(function(){
 window.location.href = $(this).find("option:selected").attr("id") + '.html';
});
});


<select id="lyjMenu">
  <option selected>Choose Demo</option>
  <option id="backgrounds">Background images</option>
  <option id="backgroundVideo">Background video</option>
</select>