var url = "http://naver.com?º¯¼ö1=°ª1&º¯¼ö2=°ª2";
1. self.location.href = url; 2. self.location.replace(url);
3. opener.location.href = url; 4. opener.location.replace(url);
5. top.location = url; 6. _parent.window.location = url; 7. parent.mainFrame.window.location.href = url; //parent ÆäÀÌÁö º¯°æ 8. parent.frameName.location.href = url; 9. parent.layerName.location.href = url;
10. iframeName.location.href = url; //ifrmae ÀÎ °æ¿ì
|