목록jQuery/자주쓰는함수 (7)
하이오리
datepicker datepicker()로 사용하면 기본 옵션이다.☞ http://www.filelink.kr/practice/jquery/datepicker.php☞ http://jqueryui.com/datepicker/
serialize() 전송 형태 : a=1&b=2&c=3 serializeArray() 전송 형태 : [ { name : "a", value : "1" }, { name : "b", value : "2" } ] html php ☞ http://www.filelink.kr/practice/jquery/serialize.php 받는 형태는 별반 다를게 없어 보인다. 기본으로 serializeArray()로 사용하면 되겠다.
.getJSON() 문법은 .post()와 비슷하다. .ajax()메서드의 단축표기이며, 몇 가지 매개변수가 셋팅된 것이다. $.getJSON(url_to_load, function(json){ ... }); $.ajax({ url: url_to_load, dataType: 'json', data: json, success: function(json){ ... }; }); html php "red",'option'=>"1")); array_push($result,array('color'=>"blue",'option'=>"2")); array_push($result,array('color'=>"green",'option'=>"3")); echo json_encode(array("result" => $res..
jQuery - ajax(),find(), each() .find() 메서드와 .each()메서드를 결합하면 요소 그룹을 찾고 그 그룹에서 루프를 돌며 조작할 수 있다. xml koantech 120 konantech2 140 ☞ http://filelink.kr/practice/jquery/ajax_xml.php
wrap();어떤 요소 안에 있는 요소를 래퍼로 감싼다.$(document).ready(function() {$('#target').wrap("");}); unwarp();래퍼로 감싸진 요소를 해제 한다.$('#target').unwrap(); 이 외에도, wrapInner(),wrapAll()가 있다.대충 봤는데 별로 사용하지 않을 것 같다. 사용할 일이 생기면 정리해야겠다.
replaceAll(); 바꿀 요소를 선택한 요소에 바꾼다. $("replaceAll success!").replaceAll($("target")); replaceWith(); 선택한 요소를 다른 요소로 바꾼다.(이것만 쓰면 되겠다) $(document).ready(function() { $("#target").replaceWith("replaceWith success!"); });