[Javascript] 새로고침, 뒤로가기 키 막기 소스
F5 키, backspace 키를 막아준다.
Development
2010. 12. 28. 04:16
[JavaScript] Method Overriding
자바스크립트는 자바와는 다르게 기본적으로 메소드 오버라이딩을 지원하지 않는다. 때문에 사용자가 메소드 오버라이딩 소스를 만들어 적용해주어야 한다. function addMethod(object, name, fn){ var old = object[ name ]; object[ name ] = function(){ if ( fn.length == arguments.length ) return fn.apply( this, arguments ); else if ( typeof old == 'function' ) return old.apply( this, arguments ); }; } // Now setup the methods function Users(){ addMethod(this, "find", func..
Development
2010. 12. 27. 00:27
[JSP,EL,JSTL] 모든 session 값 보기
java 구문으로서 .java .jsp둘다 사용가능. Enumeration 로 모든 세션의 이름을 받아 뿌려줬다. Enumeration se = session.getAttributeNames(); while(se.hasMoreElements()){ String getse = se.nextElement()+""; System.out.println("@@@@@@@ session : "+getse+" : "+session.getAttribute(getse)); } [작성자]devbible.tistory.com
Development
2010. 12. 22. 15:05
최근에 올라온 글
글 보관함
- Total
- Today
- Yesterday