Jump to content
  • 0

Доступ к элементу родительской страницы


sseekkiirr
 Share

Question

Доброго времени суток.

я не так давно занимаюсь версткой и у меня возникла такая проблема:

у меня есть страница index.html, на этой странице есть два iframe которые изначально скрыты

<div id="1" class="left" style="display:none;">

<iframe name="left_frame" class="left_frame" frameborder="0"></iframe>

</div>

<div id="2" class="info all_mid" style="display:none;">

<iframe name="info_frame" class="info_frame" frameborder="0"></iframe>

</div>

вверху страницы index есть 4 ссылки-кнопки. вот описание одной такой ссылки

<a target="left_frame"; href="javascript:void(0);" OnClick="show ('1');parent.left_frame.location.href='labs_list.html';">Лабораторные <br>работы</br></td>

а так же содержимое файла show.js

function show(id)

{

var el1=document.getElementById(id);

if(el1.style.display=="none")

{

el1.style.display="block";

}

else

{

el1.style.display="block";

}

}

при нажатии на кнопку лабораторные работы в левом фрейме отображается блок с содержимым страницы labslist.html

как из labslist открыть фрейм Info_frame который описан в странице index.html?

конечно я попытался обратиться из строки списка страницы labslist.html открытой во фрейме left_frame к скрипту show но фрейм не открывается т.к. на странице labslist.html нету фреймов..

<li><a target="info_frame"; href="javascript:void(0);" OnClick="top.show('2'); parent.info_frame.location.href='laba4.html';">Лабораторная работа #4</a></li>

как мне открыть фрейм с id=2 из страницы labslist на странице index.html?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy