Jump to content
  • 0

Загрузка в iframe


bolddot
 Share

Question

Привет, есть код который при нажатии на меню открывает тот или иной раздел. Проблема в том что бы выделить текущий адрес. Как это можно сделать ?.

Код загрузки формы:

<script type="text/javascript">
function loadIframe(iframeName, url) {
if ( window.frames[iframeName] ) {
window.frames[iframeName].location = url;
return false;
}
return true;
}
</script>

Текущий раздел и раздел который нужно выделить:

<!-- Navigation: Begin -->
<ul id="nav">
<li id="current"><a href="#">Главная</a></li>
<li><a href="news.htm" onclick="return loadIframe('ifrm', this.href);">Новости</a></li>
</ul><!-- Navigation: End -->

Edited by bolddot
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Хорошо, и так.

Есть функция загрузки страницы, при нажатии по той или иной кнопки.

Нужно удалить id у текущего объекта:

<li id="current"><a href="#">Главная</a></li>

и добавить его к новому объекту, по которому был сделан клик:

<li><a href="news.htm" onclick="return loadIframe('ifrm', this.href);">Новости</a></li>

Link to comment
Share on other sites

  • 0

function clickevent(ev)
{
document.getElementById('current').removeAttribute('id');
this.parentNode.setAttribute('id','current');
loadIframe('ifrm', this.href);
if (ev) ev.preventDefault(); //В IE не работает
else window.event.returnValue=false; //Специально для IE
}


<a href="news.html" onclick="clickevent(event)">Новости</a>

Попробуй, может прокатит.

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