1-17 select option selected DOCTYPE html>Insert title here $(function(){//2초후 코드 실행setTimeout(function(){//변수를 선언//var value = $('select> option:selected').valvar value = $('option:selected').val();//출력alert('선택하신 메뉴는 ' + value + '입니다');}, 2000);});김밥짜장면냉면비빔밥돈까스 더보기 1-16 입력 양식 필터 input type=text DOCTYPE html>Insert title here $(function(){$('input[type="text"]').val('Hello jQuery..!!!');alert ($('input[type="text"]').val());$('input[type="text"]').css('color', 'red');$('input[type="password"]').css('color', 'green');$('input[type="file"]').css('background', 'pink');/* $('input:text').val('Hello jQuery..!!!');$('input:text').val('color','red');$('input:password').val('color','green');$('.. 더보기 1-15 입력, 양식 필터 / 속성 선택자 input type=text DOCTYPE html>Insert title here $(function(){$('input[type="text"]').val('Hello jQuery..!!!');alert ($('input[type="text"]').val());}); 더보기 이전 1 ··· 11 12 13 14 15 16 17 18 다음