안녕하세요

프로그램 과정에서 막혔던 문제들에 대한 해결책 정리


페이지 목록

2017년 4월 11일 화요일

[jQuery] jQuery select change

 $(document).ready(function()
{
    $('#selectbox').change(function(){
        alert( $('#selectbox option:selected').val() );
    });
});


출처: http://hobbiez.tistory.com/249 [취미생활]