일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GPS
- ibsheet
- swingx
- MySQL
- dock
- Ajax
- PHP
- Eclipse
- rowspan
- tomcat
- node.js
- WebLogic
- JDOM
- Struts
- jsr 296
- sencha touch
- Spring
- phonegap
- oracle
- Google Map
- 가우스
- jQuery
- Android
- JSON
- appspresso
- PLSQL
- iBATIS
- MFC
- 전자정부프레임워크
- 선택적조인
- Today
- Total
목록Developement/Web (137)
Where The Streets Have No Name
출처 : http://apmusers.com/tt/dbckdghk/59 16. map( callback ) Returns: jQuery map(콜백함수) 실행후 jQuery 객체 반환 Translate a set of elements in the jQuery object into another set of values in an array (which may, or may not, be elements). Values: 17. not( expr ) Returns: jQuery 실행후 jQuery 객체 반환 Removes elements matching the specified expression from the set of matched elements. 매치되는 원소들중 표현식과 일치 하는 원소는 제거..
출처 : http://apmusers.com/tt/dbckdghk/59 1. show( ) Returns: jQuery Displays each of the set of matched elements if they are hidden. Hello 2. show( speed, callback ) Returns: jQuery Show all matched elements using a graceful animation and firing an optional callback after completion. ##A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of millisec..
출처 : http://apmusers.com/tt/dbckdghk/59 1. ready( fn ) Returns: jQuery ready( fn ) 실행후 jQuery 객체를 반환 Binds a function to be executed whenever the DOM is ready to be traversed and manipulated. 문서가 준비가 되면 그 시점에 함수를 실행시킨다. 2. bind( type, data, fn ) Returns: jQuery bind( type, data, fn ) 실행후 jQuery 객체를 반환 Binds a handler to a particular event (like click) for each matched element. 지정된 이벤트가 일어날때까지 기다..
출처 : http://apmusers.com/tt/dbckdghk/59 1. html( ) Returns: String html( ), 실행후 문자열 반환 Get the html contents (innerHTML) of the first matched element. This property is not available on XML documents (although it will work for XHTML documents). 매치되어진 첫번째 원소의 html을 가져와서 반환 Click to change the html to a text node. This button does nothing. 2. html( val ) Returns: jQuery html( val ), 실행후 jQuery 객체 반..
출처 : http://apmusers.com/tt/dbckdghk/59 1. css( name ) Returns: String css( name ) 실행후 문자열 반환 Return a style property on the first matched element. 매치된 원소에서 주어진 스타일 속성이 발견되면 그 값을 반환 2. css( properties ) Returns: jQuery css( properties ) 실행후 jQuery 객체 반환 Set a key/value object as style properties to all matched elements. 매치되어진 모든 원소에 주어진 키와 값으로 이루어진 속성들의 배열의 스타일을 적용하고 객체를 반환 Move the mouse over a..
출처 : http://apmusers.com/tt/dbckdghk/59 1. eq( index ) Returns: jQuery eq(인덱스) 실행후 jQuery 객체 반환 Reduce the set of matched elements to a single element. 매치되는 원소중 인덱스와 일치하는 것 하나만 반환한다. 2. hasClass( class ) Returns: Boolean 클래스가 있나 없나 실행후 참거짓 리턴 Checks the current selection against a class and returns true, if at least one element of the selection has the given class. 매치되는 원소에 주어진 클래스가 존재하면 참, 아니면 ..
출처 : http://apmusers.com/tt/dbckdghk/59 1. attr( name ) Returns: Object 속성 실행후 객체 반환 Access a property on the first matched element. This method makes it easy to retrieve a property value from the first matched element. If the element does not have an attribute with such a name, undefined is returned. 주어진 속성명의 값을 가져옴, 매치되는 첫번째 것만 가져옴 Once there was a large dinosaur... The title of the emphasis i..
출처 : http://apmusers.com/tt/dbckdghk/59 =>객체 선책 1. #id Returns: Element #아이디, 실행후 원소 반환 Matches a single element with the given id attribute. 주어진 아이디에 매치되는 원소하나를 찾아 반환 id="notMe" id="myDiv" 2. element Returns: Array 원소명, 실행후 원소 배열 반환 Matches all elements with the given name. 주어진 원소명에 매치되는 모든 원소를 배열로 반환 DIV1 DIV2 SPAN 3. .class Returns: Array 클래스명, 실행후 원소배열로 반환 Matches all elements with the given..
출처 : http://apmusers.com/tt/dbckdghk/59 1. jQuery( html ) Returns: jQuery jQuery( html ), 실행후 jQuery객체를 반환 Create DOM elements on-the-fly from the provided String of raw HTML. 주어진 html을 가지고 빠르게 문서 원소를 생성한다. 그리고 jQuery객체로서 그 것을 반환한다. 이말은 그것을 이어서 jQuery의 다른 함수와 함께 사용가능하다는 뜻이다. 2. jQuery( elements ) Returns: jQuery jQuery( 원소 ) jQuery( 원소.원소.원소 ), 실행후 jQuery객체를 반환 Wrap jQuery functionality around a..
출처 : http://cafe.naver.com/rubython/420 $()jQuery 오브젝트를 만들어 내는 함수입니다. $("CSS/Xpath 문자열")CSS/XPATH 그리고 요소를 지정해, 매치한 요소를 가진다jQuery 오브젝트를 돌려줍니다. 자세한 지정 방법은 CSS / XPath (을)를 참조해 주세요. var $toc_1 = $("#toc_1"); jquery_dump($toc_1); var $h1 = $("h1"); jquery_dump($h1); var $h1head = $("h1.head"); jquery_dump($h1head); var $ahref = $("a[@href='http://jquery.com/']"); jquery_dump($ahref); var $h1pa = $("..
출처 : http://cafe.naver.com/rubython/419 기본jQuery (이)란jQuery (은)는 여러가지 처리를 짧고 간단하게 쓸 수 있다 JavaScript 라이브러리입니다. 독자적인XPATH/CSS 실렉터를 이용하는 것으로, 많은DOM 조작을 매우 간단하게 쓸 수 있습니다. JavaScript 의DOM 조작이나,XMLHTTPRequest ,XML 의 조작등을 기억하지 않아도, Ajax (을)를 이용한 인터랙티브인 페이지를 만들 수 있습니다. 이하의 샘플을 보면,JavaScript 다운 표기를 거의 할 필요가 없는 것을 알 수 있다고 생각합니다. toggle 샘플특정의 블록의 표시·비표시를 바꾸는 것은 이하와 같은 코드가 됩니다. $("#target_toggle").toggle("s..
php source :
참고 : http://www.xml.com/pub/a/2007/10/10/jquery-and-xml.html test4_ds.php xmldata.html
출처 : http://blog.naver.com/kissin/70018447897 Query 사용위에서 소개한 Aptana를 설치 하였다면, 별도 jQuery설치는 필요 없다. 하지만 설치가 어려운것은 아니다. jQuery라이브러리는 55kb짜리 파일 하나로 되어 있다. 이를 HTML에 사용 선언을 하여 주면 된다. jQuery 기존 자바 스크립트 라이브러리 사용과 차이가 없다. 단, 압축버젼과 그렇지 않은 버젼 두개의 파일을 제공하는데, 프로그래밍을 할 때는 디버깅을 위해 압축하지 않은 버젼의 파일을 사용하고, 배포할 경우 압축된 버젼을 사용하는 것이 좋다. jQuery 의 시작 이벤트보통의 자바스크립트 프로그래머들은 브라우져의 document가 모두 다운로드 되어진 상태에서 코드를 시작하기위해 다음과..
기초 이 문서는 JQuery를 시작하는데 도움을 주기 위한 기본적인 튜토리얼이다. 아직 테스트 페이지를 만들어두지 않았다면, 다음과 같은 HTML 페이지를 만드는 것에서부터 시작해보도록 하자. jQuery script 태그의 src 속성의 패스를 jquery.js 가 있는 곳을 가리키도록 해야 한다. 예를들어 jquery.js가 HTML 페이지와 같은 디렉토리에 있다면 다음과 같이 한다. jQuery 는 다운로드 페이지에서 받을 수 있다. 문서가 로드되었을 때 코드 실행하기 많은 javascript 프로그래머들이 하는 첫번째 일은 다음과 같이 코드를 추가하는 일이다. window.onload = function(){ ... }function 안에는 페이지가 로드 되자마자 실행하기를 원하는 코드가 들어간다..
출처: http://ilus.tistory.com/81 ex1) Java Package /* * Base64Utils.java * * Created on 2007년 10월 16일 (화), 오후 2:22 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package fuel.Util; import sun.misc.*; import java.io.*; /** * * @author ilu */ public class Base64Utils { /** Creates a new instance of Base64Utils */ public Base64Utils() { } /** * B..
출처 : http://darksniper.springnote.com/pages/743356 var ajax = {}; ajax.xhr = {}; ajax.xhr.Request = function(url, params, callback, method) { this.url = url; this.params = params; this.callback = callback; this.method = method; this.send(); } ajax.xhr.Request.prototype = { getXMLHttpRequest: function() { if (window.ActiveXObject) { try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { t..
출처 : http://cafe.naver.com/devteria/475 환경설정. 1. web.xml에 아래내용 추가 ------------------------------------------------------------------------------------------ com.metaparadigm.jsonrpc.JSONRPCServlet com.metaparadigm.jsonrpc.JSONRPCServlet com.metaparadigm.jsonrpc.JSONRPCServlet /JSON-RPC ------------------------------------------------------------------------------------------ 2. json.jar를 lib 디렉토..
출처: http://support.microsoft.com/kb/601996/ko 1. Client.htm 작성하고 다음의 코드를 입력합니다. Part #: Description: Quantity: 2. Server.ASP를 다음과 같이 작성합니다. 3. Parts.xml 을 다음과 같이 작성합니다. A1000 Flat washer 4000 S2300 Machine screw 1000 M2400 Nail 5004 4. 위의 세 개의 파일을 웹 서버에 저장한 다음 Client.htm을 먼저 실행합니다. 5. 데이터를 수정하고 저장을 누릅니다. 6. 웹 페이지에서 변경된 데이터를 바로 볼 수 있습니다.
출처 : http://tong.nate.com/gabriel0000/11860659 1. 개념잡기 일반화 시킨 표현. 이것을 정규표현이라고 요약할 수 있을 것 같다. 다음의 과정을 너무 쉽다 생각말고 따라오길 바란다. - 감잡기 "12354" -> 숫자 "asdfasf" -> 알파벳 두 가지의 간단정규표현을 만들었다. 실생활의 보기와 비추어보자. "길이가 3인 이름!" 위의 표현은 길이를 표시하는 방법이 없다. 조금 더 발전시켜서 "알파벳{3}"이런식 으로 길이를 표현할 수 있도록 한다. 그리고, "알파벳"란 것도 너무 길다 "알" 이라고 한 글자로 표현한다. 그러면 "길이가 3인 이름"은 "알{3}"으로 표시가 가능하다. 길이가 10인 숫자는 "수{10}" "길이가 1인 알파벳이 나오고 그 다음에 길이..