일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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호스팅
- 웹퍼블리셔
- 무료
- 복사방지
- 무료홈페이지
- 우체국 우편번호
- 퍼빌리셔
- 마우스 오른쪽 버튼
- 무료 홈페이지 제작
- 무료사이트
- 홈페이지제작
- 무료제작
- 무료 웹 호스팅
- 글자뒤집기
- 우편번호 API
- 무료호스팅
- postcodify
- 호스팅
- 웹퍼블리싱
- 자바키워드
- 클릭해제
- 무료 호스팅
- 새우편번호
- 무료 홈페이지
- 웹호스팅
- php
- 자바스크립트
- 문자열 뒤집기
- 마우스오른쪽
- Today
- Total
목록Developer/Jquery (14)
Developer Factory
참고 블로그 : http://www.openeg.co.kr/463
serializeArray()원문 링크 http://api.jquery.com/serializeArray/퍼온곳 : http://findfun.tistory.com/402serializeArray()Returns : Array개요 : 폼 요소를 names와 values 배열로 인코딩합니다.serializeArray().serializeArray() 함수는 JSON 문자열 형태로 JavaScript 배열 객체를 만듭니다. 이 함수는 폼 요소 집합을 표현하는 jQuery 객체를 이용합니다. 폼 요소들은 여러가지가 있습니다. 4 5 6 7 .serializeArray() 함수는 W3C 의 표준 규칙인 successful controls 을 따릅니다. 요소는 disabled이 아니어야 하고 반드시 name 속성..
(* 요청) HTTP Request-Line => GET / index.html HTTP/1.1 (엔터)GET -> Method (요청형식)indwx.html -> Request URI Uniform URL - http: 서버경로:포트/경로 Resource (Lcation) Identify URV : 0 :: 0 :: 0 :: 0 header (요청,응답,공통,데이터) User-Againt : ------------------ (엔터)헤더명 값 (엔터 CRLF) (* 응답) status-line : HTTP/1.1 200 ok => ( HTTP/1.1 -> http버전 / 200 -> status code / ok -> 문장(메시지) ) 해더- 응답- 요청- 공통- 데이터해더(Entity)
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..
① 객체.함수() -> 값을 꺼낼 때② 객체.함수(값) -> 값을 설정③ 객체.함수(function(...){ return 값;}); -> 함수의 리턴값으로 값 설정④ 객체.함수({key:값, . . .}); 한꺼번에 여러개의 값을 설정하고 싶을때 "use strict"; // DOM 트리가 완성되면 내가 넘겨 준 함수를 호출해 다오!$(function(){ // 1. 값 꺼내기 - 여러개의 엘리먼트에서 값을 꺼낼 때는 첫번째것만 꺼낸다 console.log( '1. 값 꺼내기--------------------------------------------'); var content = $( 'h2').html(); console.log(content); // 2. 값 설정하기 - 여러 개의 엘리먼트의 값..
// this.innerHTML += '+'; // addEventListener('click',function(){}; -> ie 8 이하에서는 동작 안함 $(document).ready( function () { // 이벤트를 연결합니다. (.on) $( 'h1').on( 'click', function () { $( this).html(function (index, html) { return html + '+' ; }); }); }); Header-0 Header-1 Header-2 $(document).ready( function () { // 이벤트를 연결합니다. 1 bad $( 'h1').on( 'click', function () { $( this).html(function (index, h..
① 객체.함수() -> 값을 꺼낼 때② 객체.함수(값) -> 값을 설정③ 객체.함수(function(...){ return 값;}); -> 함수의 리턴값으로 값 설정④ 객체.함수({key:값, . . .}); 한꺼번에 여러개의 값을 설정하고 싶을때 .addClass //라벨 붙이기 $(document).ready( function () { $( 'h1').addClass( function (index) { return 'class' + index; }); }); .removeClass //라벨 제거 $(document).ready( function () { $( 'h1').removeClass( 'select'); }); .attr('속성값', 값); $(document).ready( function (..
package basic.exame06.jdbc.ex; import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.Statement;import java.util.Scanner; public class CourseMgt { public static void insert() throws Exception { Class. forName("com.mysql.jdbc.Driver" ); Connection con = DriverManager.getConnection ( "jdbc:mysql://localhost:3306/studydb"..