프로그래밍/ASP, Javascript

파이어폭스 iframe location 호환성 문제

멍멍대왕 2015. 6. 15. 15:28

보통 IE나 크롬에서 

document.[iframe name].location.href="";


와 같이 iframe에 접근이 가능합니다.

하지만 파이어폭스에서는 접근이 안되고 에러를 내보냅니다.


해결 방법은 iframe에 ID 값을 주고 ID를 이용해서 접근을 하면 처리가 됩니다.

document.getElemnetById('ifrane name').contentWindow.location.href="";