일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- 복사방지
- 무료 웹 호스팅
- 자바스크립트
- 무료 홈페이지 제작
- 무료제작
- 무료
- 마우스 오른쪽 버튼
- php
- 무료호스팅
- 새우편번호
- php호스팅
- 클릭해제
- 우체국 우편번호
- 웹호스팅
- 무료서버
- postcodify
- 자바키워드
- 글자뒤집기
- 우편번호 API
- 홈페이지제작
- 무료 홈페이지
- 호스팅
- 무료홈페이지
- 무료 호스팅
- 무료사이트
- 웹퍼블리셔
- 문자열 뒤집기
- 마우스오른쪽
- 웹퍼블리싱
- 퍼빌리셔
- Today
- Total
목록전체 글 (237)
Developer Factory
JQuery 쓰는 이유?1. Cross Browsing=> 브라우저에 상관없이 동일한 결과를 얻을 수 있다.2. 코딩이 간결해 진다. http://jquery.com/ => 다운로드 페이지 jQuery 1.xThe jQuery 1.x line had major changes as of jQuery 1.9.0. We strongly recommend that you also use the jQuery Migrate plugin if you are upgrading from pre-1.9 versions of jQuery or need to use plugins that haven't yet been updated. Read the jQuery 1.9 Upgrade Guide and thejQuery 1.9..
jq001body,h1 { border: 1px solid red; padding: 20px; margin: 5px;}"use strict"; window.onload = function(){ console.log( 'window.onload = 함수객체...' );} ; // window.jQuery = window.$ = jQuery;// jQuery(document) $(document).ready(function(){ //DOM tree 완성 후 선언 순서대로 호출 console.log( '111 ready(함수객체)...');}); $(function(){ //DOM tree 완성 후 선언 순서대로 호출 console.log( '$(함수객체)...'); }); // jQuery(document)..
$(document).ready( function () { $( 'tr:odd').css( 'background' , '#ff0000' ); // odd 짝수 $( 'tr:even').css( 'background' , '#0000ff' ); // even 홀수 // tr:first' 한번만 찾으면 되지만... $( 'tr:first').css( 'background' , '#000000' ).css( 'color', '#FFFFFF' ); // tr:first' 두번을 찾아야 되는 코딩이다 // $('tr:first').css('background', '#000000'); // $('tr:first').css('color', '#FFFFFF'); // CSS3 표준 문법 13-27 $( 'tr:eq(0..