반응형
참조: http://stackoverflow.com/questions/1477547/getelementbyid-contentdocument-error-in-ie

alert
(document.getElementById('iframList').contentWindow.document); 

백번 document.getElementById('iframList').contentDocument해도 안되었는데
위와같이 하니 되었다. (firefox에서만 지원되는 듯 하다. 정확한것은 아니다.) 
익스플로러에서는 위와같이, firefox에서는 아래와 같이.

반응형
반응형
출처: http://whiteship.tistory.com/993


1. var myValue=new Array(3)
mycars[0]="1"
mycars[1]="2"
mycars[2]="3"

2. var mycars=new Array("1","2","3")

자바로 배열만들때 버릇으로 []하려니 안되었음. 기억하자!
반응형
반응형
출처: http://www.java2s.com/Code/Java/Regular-Expressions/SplitaStringintoaJavaArrayofStringsdividedbyanRegularExpressions.htm

public class 
Test{
  public static void main(String[] args) {
//chk_value = "X01;X02;"였다.

         String[] x = Pattern.compile(";").split(
          chk_value);

    }
  }
}

결과를 찍어보면 X01 X02 로 구분되어서 string배열에 담김을 볼 수 있다.
for문돌면서 같은거 찾아야 하는 줄 알았는데 pattern이라는게 참 좋구나~
반응형

+ Recent posts