2014-05-09 1 views
3

URL 주소 표시 줄에 iframe 내용의 URL을 포함 할 수 있습니까?주소 표시 줄에 iFrame URL 표시

예를 들어, 우리가 다른 도메인에 iframe이있는 realpage을 열기 때문에 주소 표시 줄에 아무것도 변경 나던 논리적 페이지를 통해 서핑 realpage.com

에 SRC와 iframe이있는 도메인 sub.test.com 있습니다.

주소창에 전체 URL을 삽입 할 수는 없지만 호스트 이름을 입력하지 않으면 어떨까요? 난 iframe에 위치 realpage.com/first.php 열면

예를 들어, i가 어드레스 바의 URL이 sub.test.com/first.php 또는 sub.test.com/first

+0

체크에서 더 많은 정보를 원하시면 다음 링크 : 여기에 추가 정보를 위해

if ("onhashchange" in window) { alert("The browser supports the hashchange event!"); } function locationHashChanged() { if (location.hash === "#somecoolfeature") { somecoolfeature(); } } window.onhashchange = locationHashChanged; 

다른 링크입니다에 http : // clickover.com/questions/136458/change-the-url-in-the-browser-with-loading-the-new-page-using-javascript. – adamj

답변

3

당신은 당신이 pushState (more info)를 사용할 수 있습니다 또는 당신이 아직 pushState 사용할 수없는 브라우저와 호환되도록하고자하는 경우 해시 키 탐색 (more info)를 사용할 수 있습니다 여기에 두 가지 옵션이 있습니다.

pushState 예 :

var stateObj = { foo: "bar" }; 
history.pushState(stateObj, "page 2", "bar.html"); 

해시 키 예 : Change the URL in the browser without loading the new page using JavaScript

1

어드레스를 변경할 수있는 최상위 프레임 변경할 (아니지만 근원 부) the history api와, 특히 pushState을 참조하십시오.

프레임의 탐색에 대한 반응으로이 작업을 수행하려면 원래 길이에 걸쳐 있기 때문에 postMessage을 사용하여 변경하려는 URL을 보내야합니다.