Javascript Event for “Open in new Tab”

2019-04-07 09:05发布

问题:

I have the following problem: I use Javascript onclick event to change href of a link. It works like a charm but only if user just clicks a link. If "Open in new tab" feature is used for the link - onclick event will not fire and href will never change. Is there any way to handle such an event? Perhaps with jQuery or some other JS Framework?

Example:

<a href="some_url" onclick="this.href = 'some_other_url'">Link</a>

Many thanks!

回答1:

Try change

<a href="some_url" onclick="this.href = 'some_other_url'">Link</a>

for:

<a href="some_url" onmousedown="this.href = 'some_other_url'">Link</a>