목록분류 전체보기 (201)
wrkbrs
*jquery를 이용하여 div 요소와 css 구현 var div_pop_back = $("",{ css:{ width:$(window.top.document).width(), height:$(window.top.document).height(), opacity:0.1 }}).addClass("divpop_back").attr("id","divpop_back"); // jquery를 이용하여 태그요소 구현var div_pop = $("").addClass("divpop").attr("id","divpop");var pop_title = $(""+title+"").addClass("divpop_title"); *if 조건문 안의 숫자 if(width){}:width : 숫자 -> 숫자가 있으면 true, ..
*싱글톤으로 객체 생성 LoginManager loginMng = LoginManager.getInstance(); :싱글톤으로 객체생성 (한번의 새로운 객체를 생성하기위해) *RequestDispatcher: 클래스는 현재 request에 담긴 정보를 저장하고 있다가 계속해서 다음페이지에도 해당 정보를 볼수 있게 계속 저장하는 기능dispatcher.forward : .jsp -> servlet -> .jsp 방식의 정보 전달 RequestDispatcher dispatcher = request.getRequestDispatcher(forwardUrl);dispatcher.forward(request, response); *ajax의 global속성global: false: 지역 이벤트 (true일 경..
정규표현식은 아주 가끔가다가 쓰기때문에 항상 다시 볼때마다 헥깔리곤 하는데.. 주요 사용예를 정리하여 보았다. 나중에 찾아보기 편하라고 ;; 정규 표현식의 용어들 정규 표현식에서 사용되는 기호를 Meta문자라고 표현한다. 표현식에서 내부적으로 특정 의미를 가지는 문자를 말하며 간단하게 정리하면 아래의 표와 같다. 표현식의미 ^x 문자열의 시작을 표현하며 x 문자로 시작됨을 의미한다.x$ 문자열의 종료를 표현하며 x 문자로 종료됨을 의미한다. .x 임의의 한 문자의 자리수를 표현하며 문자열이 x 로 끝난다는 것을 의미한다. x+ 반복을 표현하며 x 문자가 한번 이상 반복됨을 의미한다. x? 존재여부를 표현하며 x 문자가 존재할 수도, 존재하지 않을 수도 있음을 의미한다. x* 반복여부를 표현하며 x 문자가..
This question already has an answer here:Changing the type of an input field using jQuery (text -> password) 5 answersI want to change the input type to password when I click on it. I tried this:I tried to use the jQuery function attr to change this on the click event, but nothing is happening.Is this the right way to do it or is this possible? This will work$('input').on('click', function () { ..
for(var i=0; i
Jquery 셀렉터로 특정 단어로 시작해서 특정 단어로 끝나는(ex: a-xxxx-b)값을 지정할수있다 예제 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 .siblings * { display: block; border: 2px solid lightgrey; color: lightgrey; padding: 5px; margin: 15px; } $(document).ready(function(){ $( "li[id^='start-'][id$='-end']" ).css({"color": "red", "..
오늘은 자바에서 지원하는 정규표현식을 이용해서 사용자가 설계된 원하는 값만 입력할 수 있도록 코드를 짜보겠습니다. 먼저 예제를 보여드린 뒤 자세히 알아보아요 예제1) 숫자만 허용 1234567891011121314151617181920212223242526272829import java.util.Scanner;import java.util.regex.Matcher;import java.util.regex.Pattern; public class OnlyInteger { public static void main(String[] args) { Pattern p = Pattern.compile("(^[0-9]*$)"); int onlyNum; String inputVal; Scanner iStream = ne..
jQuery 1.6/1.6.1에서 무엇이 있었나?.attr()에서 같이 하던 처리를 .attr()와 .prop()로 나누었다그래서 지금까지 움직였던게 움직이지않아 다시 수정하였다지금까지 .attr()만으로 가능하던 처리를 버전1.6의 업데이트로 인하여 .attr()과 .prop()으로 나누어졌습니다. 버전업을 하면 그대로 움직이는 코드도있고 움직이지않는 코드가 있어 많은 혼란이 발생합니다. 많은 혼란으로 결국 버전업데이트 1.6.1에서 .attr()을 예전처럼 움직일수있도록 다시수정되었습니다. 왜 .attr()을 .prop()으로 나누었는가?원래 따로해야할 문제였다.같이 사용하는 문제로 버그가 많아져버렸다.이건 jQuery개발자의 사정입니다. 원래JavaScript로서는 .attr()과 .prop()는 ..
There are no values that will cause the checkbox to be unchecked. If the checked attribute exists, the checkbox will be checked regardless of what value you set it to. Run code snippetExpand snippetRenders everything checked in all modern browsers (FF3.6, Chrome 10, IE8). https://stackoverflow.com/questions/4228658/what-values-for-checked-and-selected-are-false