목록IT (241)
wasup
보호되어 있는 글입니다.
보호되어 있는 글입니다.
자바에서 데이터 타입은 기본타입과 참조타입이 있다. 기본타입 : 함수타입, 실수타입, 논리타입 참조타입 : 배열타입, 열거타입, 클래스, 인터페이스 클래스는 참조타입의 데이터로 속성, 메서드, 생성자가 있다. public class Book { //속성 -> String bookname static int bookId = 10; String bookName; String bookWriter; int bookPrice; String bookPublisher; String managerId; //생성자 -> Book(){} Book(){ System.out.println("나는 디폴트 생성자!!"); } //메서드 //get method : 인스턴스 변수의 값 가져오기 //set method : 인스턴스 변..
filter() : 이름 그대로, 선택한 것을 걸러준다. 예시를 위한 HTML header - 0 header - 1 header - 2 header - 3 header - 4 header - 5 header - 6 Q) h3태그 중 짝수인것을 골라 css적용 $(function(){ $('h3').filter(':even').css({ backgroundColor: 'black', color: 'white' }); }) 결과 Q) h3태그 중 index%3이 0인것의 css속성을 추가 $(function(){ $('h3').filter(function(index){ return index%3==0; }).css({ //filter가 true인 것만 css적용된다. backgroundColor: 'gre..
보호되어 있는 글입니다.
Q. 각각의 버튼 클릭 시 카운트 업 html ButtonA Up ButtonB Up Button A - 0 Button B - 0 script window.onload = function(){ var buttonA = document.getElementById('button_a'); var buttonB = document.getElementById('button_b'); var counterA = document.getElementById('counter_a'); var counterB = document.getElementById('counter_b'); buttonA.onclick = function(){ counterA.innerHTML = Number(counterA.innerHTML)+1; ..
Q. 이벤트를 선언해보자 style html Click1 Click2 Click3 Click4 script
보호되어 있는 글입니다.