분류 전체보기
-
한글 완성형 코드표카테고리 없음 2016. 7. 1. 16:05
출처 : http://dokydoky.tistory.com/369 KSC5601-1987 한글코드 총 2350자한 글 코드 대역 ------------------- 가~괆 B0A1~B0FE 괌~깸 B1A1~B1FE 깹~끙 B2A1~B2FE 끝~뇝 B3A1~B3FE 뇟~덥 B4A1~B4FE 덧~딸 B5A1~B5FE 땀~랗 B6A1~B6FE 래~륩 B7A1~B7FE 륫~뫼 B8A1~B8FE 묀~벗 B9A1~B9FE 벙~빤 BAA1~BAFE 빨~샤 BBA1~BBFE 샥~숭 BCA1~BCFE 숯~쐰 BDA1~BDFE 쐴~엎 BEA1~BEFE 에~웨 BFA1~BFFE 웩~젊 C0A1~C0FE 점~짓 C1A1~C1FE 징~찻 C2A1~C2FE 찼~층 C4A1~C4FE 치~퉜 C5A1~C5FE 퉤~퐁 C6A1~C6F..
-
-
-
jQuery ListView - 리스트뷰개발 & 계발/jQuery 2015. 11. 29. 23:00
http://demos.jquerymobile.com/1.3.0-rc.1/docs/demos/widgets/listviews/ jQuery MobileNavigation Home Listviews API A listview is coded as a simple unordered list (ul) or ordered list (ol) with a data-role="listview"attribute and has a wide range of features.Jump to section Read-only, unorderedA listview is a simple unordered list containing linked list items with a data-role="listview" attribute...
-
-
-
-
[jQuery입문] EVENT 처리하기개발 & 계발/jQuery 2015. 6. 22. 18:26
이벤트 종류 - click : 클릭되었을 때 - mouseenter : 마우스 포인터가 위에 있을 때 - mouseleave : 마우스 포인터가 벗어났을 때 - hover : mouseenter와 mouseleave를 한꺼번에 - focus : 포커스를 얻었을 때 - blur : 포커스를 벗어났을 때 이벤트 핸들러 작성 - 이벤트가 발생 했을 때 처리하는 부분 작성 jQueryObject.click(function(){ 처리 내용 }); mouseenter, mouseleave 예제 div! hover 예제 - hover 이벤트는 mouseenter/mouseleave의 두 이벤트를 동시에 설정할 수 있는 숏 컷과 같다. - jQueryObject.hover(mouseenter이벤트핸들러, mousele..
-
[jQuery입문] .append()와 .appendTo()로 DOM 구조 움직이기개발 & 계발/jQuery 2015. 6. 13. 12:41
ㅇ .append()는 셀렉터 하단에 Element를 추가할 수 있다. - jQueryObjectA.append(jQueryObjectB); // jQueryObjectA 하단에 jQueryObjectB를 붙입니다. - 여러의 Elmenet를 붙이려면 jQueryObjectA.appen(jQueryObjectB, jQueryObjectC, jQueryObjectD); 와 같이 입력하면 된다. basket apple banana orange 샘플 보기 ㅇ .appendTo()는 셀렉터를 특정 Element 하단에 추가시킬 수 있다. - jQueryObjectB.appendTo(jQueryObjectA); // jQueryObjectA 하단에 jQueryObjectB를 붙입니다. basket apple ba..