Jump to content
  • 0

Ссылки из select открываются в Iframe


WolverineRussia
 Share

Question

Доброго времени суток! :)

Я уже давненько изучаю html и css, но серьёзно пока не знанимался :) . Имеется небольшая проблемка.

Имеется список. Имеется 2 окошка iframe.

Необходимо, чтобы при нажатии на строку из списка, в окнах iframe открывались 2 разные html страницы.

пробовал вот так:

<form>
<div class="panel1">
<select>
<option selected>Выберите</option>
<option onclick="location.href = 'content.html' target = 'window1';">#1
</select>
</div>
</form>
<div class="panel2">
<iframe src="content.html" width="304" height="211" scrolling="auto" frameborder="0" name="window1"></iframe>
</div>
<div class="panel3">
<iframe src="content.html" width="304" height="211" scrolling="auto" frameborder="0" name="window2"></iframe>
</div>

Но не получилось.

Раньше, у меня в этом коде не было этого:

target = 'window1'

и ссылка просто открывалась в этом окне.

Помогите! :)

Заранее спасибо! :D

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Тут JavaScript только, присвойте фреймам id и на клик по ссылке что-нибудь типа

getElementById(id1).src="адрес для первого фрэйма";
getElementById(id2).src="адрес для второго фрэйма";

А вообще, iframe - зло. Используйте, например, JQuery для загрузки в отдельные элементы страницы.

Link to comment
Share on other sites

  • 0
Тут JavaScript только, присвойте фреймам id и на клик по ссылке что-нибудь типа

getElementById(id1).src="адрес для первого фрэйма";
getElementById(id2).src="адрес для второго фрэйма";

А вообще, iframe - зло. Используйте, например, JQuery для загрузки в отдельные элементы страницы.

Необоснованное утверждение, что iframe зло - тоже зло.

Особенно если учесть, что в новой спецификации HTML5 он никуда не делся.

Link to comment
Share on other sites

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