본문 바로가기
반응형

개발/jquery11

jQuery 튜토리얼 나중에 응용하기 좋을 듯. http://blog.naver.com/PostView.nhn?blogId=erroring&logNo=150108790432&categoryNo=0&parentCategoryNo=0&viewDate=¤tPage=2&postListTopCurrentPage=1&isAfterWrite=true&userTopListOpen=true&userTopListCount=5&userTopListManageOpen=false&userTopListCurrentPage=2 2011. 5. 24.
샘플예제 연습1 쉽지 않다. 이거저거 알아봐도 마땅한 답을 얻기 어려웠다. 어쨌든, 우연찮게 찾은 아주 좋은 강좌... 한번 따라해보았다. 놀라워라. 이런 어메이징같으니. 정말 이쁘게도 화면이 돌아간다. ^^* 강좌 올려주신 하나둘님께 감사... link : http://webdevmobile.com/xe/lec_jqm/22054 아래는 실습화면캡처 jQueryMobile 시작 About jQueryMobile About jQueryMobile jQueryMobile 셈플입니다. jQueryMobile을 학습하기 위한 기초적인 예제 웹앱 입니다. 쉽고 재미있는 jQueryMobile의 사용방법에 대해서 단계별로 학습해봅시다. 2011. 2. 8.
2011-01-13, [1.5 DOM요소의 래퍼 집합 필터링하기 실습] 뭐, 확 들어오지는 않지만, 얼추 이런건가보다 싶은 느낌은 오는군. link link link link 2011. 1. 13.
2011-01-04 jqueryphp.com 에서 퍼온 소스임. * jquery $(document).ready(function(){ //global vars var userName = $("#name"); //name field var userEmail = $("#email"); //email field var userTxt = $("#txt"); //comment field var targetDiv = $("#targetDiv"); //target div to print results //function to check name and comment field function checkCommentsForm(){ if(userName.attr("value") && userTxt.attr("value")) return t.. 2011. 1. 4.
2011-1-1 * find() 메서드 - DOM 요소 집합내에서 자식노드를 찾기위한 방법이라 함. 예를 들면, 태그 내에서 요소만을 찾아내거나할때 사용 가능함. ex) abcdbbadsf 2011. 1. 1.
jQuery 관련링크모음 - jQuery Korea 라고 하네요. http://www.jquery.kr/ - 오리지날 jQuery http://jquery.com/ - jquerymobile http://jquerymobile.com/ - jquery API http://api.jquery.com/ - jquery + PHP http://www.jqueryphp.com/ 2010. 12. 30.
2010-12-28 eventDiary  // form 안의 input 요소를 모두 찾는다. 8개 출력alert('selected ' + jQuery('input',$('form')).length + ' inputs' );// 첫번째 form 안의 input 요소를 모두 찾는다. 4개 출력alert('selected ' + jQuery('input', document.forms[0]).length + ' inputs' );// body 안의 모든 input 요소를 찾는다. 12개 출력alert('selected ' + jQuery('input', 'body').length + ' inputs' ); 2010. 12. 29.
2010-12-26 // 페이지의 모든 div를 숨긴다. jQuery('div').hide(); // 모든 div의 내부 텍스트를 변경한다. jQuery('div').text('new content'); // div에 updatedContent 클래스를 추가한다. jQuery('div').addClass("updatedContent"); // 페이지에 모든 div를 나타낸다. jQuery('div').show(); --> 이는 체인을 사용하여 다음과 같이 변경가능 jQuery('div').hide().text('new content').addClass("updatedContent").show(); --> 들여쓰기와 줄바꿈을 사용하여 다음과 같이 변경가능 jQuery('div') .hide() .text('new conten.. 2010. 12. 26.
2010-12-25 This is a heading This is a paragraph. This is another paragraph. Click me 위와 같이 사용한다. 버튼 누르면 P 태그에 해당하는 글을 화면에서 삭제한다. 2010. 12. 25.
jQuery Attribute Selectors jQuery Attribute Selectors $("[href]") => href 속성을 가지고 있는 모든 엘리먼트가 반환된다. $("[href='#']") => href 의 값이 '#'인 엘리먼트가 반환된다. $("[href!='#']") => href의 값이 '#'이 아닌 엘리먼트가 반환된다. $("[href$='.jpg']") => href의 값에 '.jpg' 가 포함되어 있는 엘리먼트가 반환된다. 2010. 12. 22.
jquery 1 jquery 버전 찍어보기. +_+ 2010. 12. 20.
반응형