PHP/Summary

자바 스트립트 관해서

gandus 2010. 9. 29. 15:49

location 객체

   top.frames[1].location.href = url; // frame 처음꺼는 0  두번째는 1 로 된다.
                                                  // 그래서 top.frames[1]  1이 두번째 프레임을 의미한다.
                                                  // 만약 0을 쓴다면 첫번째 프레임을 의미한다.


history 객체

   <INPUT TYPE="button" VALUE="3단계 앞으로" onClick="history.go(-3)"><br><br>
   <INPUT TYPE="button" VALUE="3단계 뒤로" onClick="history.go(3)"><br><br>
   <INPUT TYPE="button" VALUE="앞으로" onClick="history.back()"><br><br>
   <INPUT TYPE="button" VALUE="뒤로" onClick="history.forward()"><br><br>
   <INPUT TYPE="button" VALUE="방문한 히스토리 갯수" onClick="HisLen()">

   <!-- go 함수는 인자가 정수만 온다.+, -만 가능 -->