Jump to content
  • 0

a href, onClick


minon-a
 Share

Question

<a href="http://yandex.ru/" onClick='open("http://yandex.ru/", "displayWindow", "width=400,height=300,status=no,toolbar=no,menubar=no,alwaysLowered=no,alway

sRaised=no,dependent=no,hotkeys=no,titlebar=no,z-lock=no,location=no,directories=no,resizable=yes,scrollbars=no")'>Яндекс</a>

При клике на такую ссылку открывается и новое окно и осуществляется переход на текущей странице.

Нужно что бы открывалось только новое окно. А тег <a> тут нужен только для того, что бы меняли цвет посещенные ссылки.

Как сделать?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
Отмена перехода - в конец onclick-а дописать return false.

Спасибо.

Еще вопрос появился. Я новичек в js. Можно как-нибудь сократить такой код, т.к. таких ссылок на странице много, типа:

<a href="http://yandex.ru/" onClick='open("http://yandex.ru/", "displayWindow", "width=400,height=300,status=no,toolbar=no,menubar=no,alwaysLowered=no,alway

sRaised=no,dependent=no,hotkeys=no,titlebar=no,z-lock=no,location=no,directories=no,resizable=yes,scrollbars=no"); return false'>Яндекс</a>

<a href="http://www.google.ru/" onClick='open("http://www.google.ru/", "displayWindow", "width=400,height=300,status=no,toolbar=no,menubar=no,alwaysLowered=no,alway

sRaised=no,dependent=no,hotkeys=no,titlebar=no,z-lock=no,location=no,directories=no,resizable=yes,scrollbars=no"); return false'>Гугл</a>

и т.д.

Link to comment
Share on other sites

  • 0

Проще всего вынести в функцию:

function inNewWindow(url) {
window.open(url, "displayWindow", "width=400,height=300,status=no,toolbar=no,menubar=no,alwaysLowered=no,alway
sRaised=no,dependent=no,hotkeys=no,titlebar=no,z-lock=no,location=no,directories=no,resizable=yes,scrollbars=no");
return false;
}

<a href="http://www.google.ru/" onclick="return inNewWindow(this.href)">Гугл</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