computer/JQuery
-
-
jQuery fadeIn, fadeOut, fadeTo 예제computer/JQuery 2014. 5. 24. 16:12
출처 : http://www.w3schools.com/jquery/jquery_fade.asp 함수 옆에 써있는 주소로 가면 직접 결과물을 확인 하실 수도 있습니다.^^ fadeIn : http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_fadein Demonstrate fadeIn() with different parameters.Click to fade in boxes fadeOut : http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_fadeout Demonstrate fadeOut() with different parameters.Click to fade out boxes fadeT..
-
location.href 와 location.replace()computer/JQuery 2014. 5. 20. 12:19
location.href와location.href는 모두 페이지를 이동시킬 때 사용한다. 그럼 어떤 점이 다른지 알아봅시다. location.href = 이동할url ; // 객체의 속성 location.replace(이동할url) ; // 메소드 저는 replace를 사용했는데 아래와 같이 사용했습니다. location.replace("main.do?m=ranking&index=${index}&data="+sData); // ${index} : action에서 setAttribute로 넘겨준 값 // sData (jquery 함수내에서 사용하는 변수) location.href 는 새로운 페이지로 이동을 합니다. 따라서 페이지 이동이므로 뒤로 가기 버튼을 클릭시 이전 페이지로 이동가능합니다..
-
JQuery selectbox Control 제어computer/JQuery 2014. 4. 15. 10:48
jQuery로 선택된 값 읽기 $("#selectBox option:selected").val(); $("#select_box > option:selected").val() $("select[name=name]").val(); jQuery로 선택된 내용 읽기 $("#selectBox option:selected").text(); 선택된 위치 var index = $("#test option").index($("#test option:selected")); ------------------------------------------------------------------- // Add options to the end of a select $("#selectBox").append("Apples"); $..