상태표시줄 문의드립니다.
본문
주소창에 도메인만 보이는데, 세부주소가 보이게 하려면 어느부분을 수정해야 하나요?
<frameset rows="0,100" frameborder="no" border="0" framespacing="0" allow="fullscreen" allowfullscreen>
<frame src="index_hidden.php" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="/renew/" name="mainFrame" id="mainFrame" title="mainFrame" allow="fullscreen" allowfullscreen />
</frameset>
답변 3
해당소스를 모두 지우고 다음 소스로
<script>
location.href = "/renew/";
</script>
frame을 빼셔야되요.
frame으로 하게되면 frameset 안에 해당 frame만 변화되고 url은 변화되지않습니다.
- frameset에서는 불가능.
- frameset은 html5에서 비표준태그.
답변을 작성하시기 전에 로그인 해주세요.