jquery – 当链接在新选项卡中打开时,如何保持当前窗口?

前端之家收集整理的这篇文章主要介绍了jquery – 当链接在新选项卡中打开时,如何保持当前窗口?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用户点击链接
<a href="http://www.stackoverflow.com" target="_blank">click</a>

有没有办法留在当前窗口而不是去选项卡?

解决方法

Is there a way to stay on the current window instead of going to the tab [when the link has target="_blank"] ?

只有当你这样做这样的事情…

$('a[target="_blank"]').removeAttr('target');

猜你在找的jQuery相关文章